How to list all the functions and types in Base?

names(Base)

or

function list_functions()
    fncs = filter( x -> isa(getfield(Base, x), Function), names(Base))
    for (i, fn) in pairs(fncs)
        println(fn)
        if (mod(i, 10)) == 0
            println("Press enter to continue...")
            readline()
        end
    end
end

see: How do I get a list of functions defined in a module?

1 Like