> Quick question, is there a safe way to get the list of exported methods
from a module? I assume names(module) will retrieve all methods and types?

filter!(names(module)) do name
  isa(getfield(module, name), Function)
end

On Sun, Apr 26, 2015 at 1:47 PM Michael Francis <[email protected]>
wrote:

> Quick question, is there a safe way to get the list of exported methods
> from a module? I assume names(module) will retrieve all methods and types ?

Reply via email to