There is a standard library in julia v1.0. How can I get the list of modules in that library?
I am also a bit confused by Iterators.
julia> join(names(Iterators), " ")
“Iterators countfrom cycle drop enumerate flatten partition product repeated rest take zip”
julia> apropos(“Iterators”)
… long list containing functions not in the previous list: Iterators.filter, Iterators.peel, Iterators.reverse but not Iterators.enumerate.