web-dev-qa-db-ja.com

Elixirでは、その機能をリストするモジュールを取得する方法はありますか?

Rubyメソッドをリストするオブジェクト(またはクラス)を取得できるのと同じ方法で、モジュールに属するすべての関数をリストする関数がElixirにありますか? )String.functionsStringは他のモジュール名に置き換えることができます)?

59
iconoclast

Elixirの各モジュールは、そのモジュールに関する情報を取得するために呼び出すことができる__info__関数を定義します。

Elixir Docs、1.6.6 e.g。 に従って、:functionsを渡して、モジュールに含まれる関数のリストを取得できます。

Map.__info__(:functions)

[delete: 2, drop: 2, equal?: 2, fetch: 2, fetch!: 2, from_struct: 1, get: 2,
 get: 3, has_key?: 2, keys: 1, merge: 2, merge: 3, new: 0, pop: 2, pop: 3,
 put: 3, put_new: 3, size: 1, split: 2, take: 2, to_list: 1, update: 4,
 update!: 3, values: 1]
82
Steven Schobert

ElixirはErlangでもあるため、これを行うErlangの方法もあります。

すべてのElixirおよびErlangモジュールには、関数module_infoはコンパイル時に定義されます。この関数には2つのアリティがあります。例えば:

iex(1)> Atom.module_info
 [module: Atom,
 exports: [__info__: 1, to_string: 1, to_char_list: 1, module_info: 0,
 module_info: 1], attributes: [vsn:       [66271031909514292894123295368320335064]],
 compile: [options: [:debug_info], version: '6.0.1',
 time: {2015, 9, 29, 2, 34, 37},
 source: '/private/tmp/elixir20150928-10892-fvin6a/elixir-1.1.1/lib/elixir/lib/atom.ex'],
 native: false,
 md5: <<49, 219, 86, 35, 141, 153, 70, 174, 245, 100, 68, 5, 62, 231, 60, 216>>]

返す特定の属性を指定できます。

 iex(2)> Atom.module_info(:exports)
  [__info__: 1, to_string: 1, to_char_list: 1, module_info: 0, module_info: 1]

アーラン関数のバージョン:

iex(3)> :crypto.module_info(:exports)
 [version: 0, stop: 0, supports: 0, info_lib: 0, hash: 2, hash_init: 1,
 hash_update: 2, hash_final: 1, hmac: 3, hmac: 4, hmac_init: 2, hmac_update: 2,
 hmac_final: 1, hmac_final_n: 2, block_encrypt: 4, block_encrypt: 3,
 block_decrypt: 3, next_iv: 2, next_iv: 3, stream_init: 3, stream_init: 2,
 stream_encrypt: 2, stream_decrypt: 2, Rand_bytes: 1, strong_Rand_bytes: 1,
 Rand_bytes: 3, Rand_uniform: 2, Rand_seed: 1, mod_pow: 3, verify: 5, sign: 4,
 public_encrypt: 4, private_decrypt: 4, private_encrypt: 4, public_decrypt: 4,
 exor: 2, generate_key: 2, generate_key: 3, compute_key: 4, md5: 1, md5_init: 0,
 md5_update: 2, md5_final: 1, md4: 1, md4_init: 0, md4_update: 2, md4_final: 1,
 sha: 1, sha_init: 0, sha_update: 2, ...]

これは、IExオートコンプリート機能が使用するもので、ElixirとErlangの両方の機能を拡張できます。

私はiex(1)> exports TargetModuleNameを使用しています。モジュールに属するすべての関数とマクロをリストします。 Map.__info__(:functions)が長い関数リストを切り捨てるのを止める方法を見つけようとして、つまずいた。

5
sheepgobeep