Search code examples
elixirelixir-iex

Get a list of all elixir modules in IEx


To get a list of all functions on a module in IEx I can run:


Map.__info__(:functions)
# or
Enum.__info__(:functions)


Using the {Module}.__info__(:functions) format.

How can I get a list of all the standard lib modules?


Solution

  • From IEx you can type : + Tab to get a list of all available modules.