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?
From IEx you can type : + Tab to get a list of all available modules.