I'm looking for a Julia function which, when applied to a module name, lists the functions available through the module.
Basically, I don't want to scour through source code and I've noticed that the documentation for many modules usually doesn't have everything.
names
works, mostly:
module MyMod
test() = 3
foo() = 4
end
names(MyMod, true)
gives me
4-element Array{Symbol,1}:
:eval
:test
:foo
:MyMod
Just need to strip out the module name and eval
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With