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


Elixir Module.overridables_in用法及代碼示例


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

用法:

overridables_in(module)
(從 1.13.0 開始)
@spec overridables_in(module()) :: [atom()]

返回 module 中的所有可覆蓋定義。

請注意,即使它已經被覆蓋,也會包含一個定義。您可以使用 defines?/2 來查看定義是否存在或未決。

該函數隻能在尚未編譯的模塊上使用。

例子

defmodule Example do
  def foo, do: 1
  def bar, do: 2

  defoverridable foo: 1, bar: 1
  def foo, do: 3

  [:bar, :foo] = Module.overridables_in(__MODULE__) |> Enum.sort()
end

相關用法


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