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


Elixir Module.delete_attribute用法及代碼示例


Elixir語言中 Module.delete_attribute 相關用法介紹如下。

用法:

delete_attribute(module, key)
@spec delete_attribute(module(), atom()) :: term()

刪除與給定鍵匹配的模塊屬性。

它返回已刪除的屬性值(如果未設置,則返回 nil)。

例子

defmodule MyModule do
  Module.put_attribute(__MODULE__, :custom_threshold_for_lib, 10)
  Module.delete_attribute(__MODULE__, :custom_threshold_for_lib)
end

相關用法


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