Search code examples
erlangerlang-shell

Documentation of the Erlang shell function i(), or which module exports it?


I'm trying to find documentation on the i() shell function, which is recommended for inspecting memory consumption. I can't figure out what module exports that function.


Solution

  • Shell first tries to evaluate local functions from shell module but i/0 is not there and second place to look is shell_default module and you can follow i() to implementation in c module.