In the console, after
using some_peoples_package
How can I obtain a list of all the functions imported?
In the console, after
using some_peoples_package
How can I obtain a list of all the functions imported?
If you mean names exported by the module you can just so SomeModule.<tab><tab>
to get that list.
Linking related post.