List Functions For A Module
During an iex
session, I can do a little introspection on modules using either the __info__/1
function or Erlang's module_info/0
function. In particular, I can pass :functions
to either one to get a list of the functions for that module.
This is what __info__/1
looks like for the functions of the List
module:
Last updated