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


Elixir Kernel.macro_exported?用法及代碼示例


Elixir語言中 Kernel.macro_exported? 相關用法介紹如下。

用法:

macro_exported?(module, macro, arity)
@spec macro_exported?(module(), atom(), arity()) :: boolean()

如果 module 已加載並包含具有給定 arity 的公共 macro ,則返回 true ,否則返回 false

請注意,如果模塊未加載,此函數不會加載模塊。檢查 Code.ensure_loaded/1 了解更多信息。

如果 module 是 Erlang 模塊(與 Elixir 模塊相反),則此函數始終返回 false

例子

iex> macro_exported?(Kernel, :use, 2)
true

iex> macro_exported?(:erlang, :abs, 1)
false

相關用法


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