Maybe not the simplest, but this works
Skip the following if that file already contains a module:
module dummy
include("yourFile.jl")
end
then
syms = names( dummy, all = true )
filter( x->getproperty(dummy,x) isa Function, syms )
Maybe not the simplest, but this works
Skip the following if that file already contains a module:
module dummy
include("yourFile.jl")
end
then
syms = names( dummy, all = true )
filter( x->getproperty(dummy,x) isa Function, syms )