當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Elixir Code.unrequire_files用法及代碼示例


Elixir語言中 Code.unrequire_files 相關用法介紹如下。

用法:

unrequire_files(files)
(從 1.7.0 開始)
@spec unrequire_files([binary()]) :: :ok

從所需文件列表中刪除文件。

文件中定義的模塊不會被刪除;調用此函數隻會將它們從列表中刪除,從而允許再次需要它們。

例子

# Require EEx test code
Code.require_file("../eex/test/eex_test.exs")

# Now unrequire all files
Code.unrequire_files(Code.required_files())

# Note that modules are still available
function_exported?(EExTest.Compiled, :before_compile, 0)
#=> true

相關用法


注:本文由純淨天空篩選整理自elixir-lang.org大神的英文原創作品 Code.unrequire_files(files)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。