I want to go through all the names in a module and find out those that represent a function.
I tried something like:
typeof(eval(:foo))
and in case :foo is a function, it returns:
typeof(foo)
From this I can see (with my eyes) that it is a function, but I can’t figure out how to see it in Julia.
Could you tell me how to see if a Symbol represents a function?