当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。