Does anyone know how to list (via a script) all the submodules within Base? I have found a few by exploring the manual, but I'm sure it is not comprehensive.
julia> filter(x -> getproperty(Base, x) isa Module, names(Base, all=true))
39-element Vector{Symbol}:
:Base
:BaseDocs
:BinaryPlatforms
:Broadcast
:Cartesian
:Checked
:CoreLogging
:Docs
:Enums
:Experimental
:FastMath
:Filesystem
:GC
:GMP
⋮
:PCRE
:PermutedDimsArrays
:Rounding
:Ryu
:SimdLoop
:Sort
:StackTraces
:Sys
:TOML
:Threads
:Unicode
:_RepeatInnerOuter
:__toplevel__
Does this help?
It sure does Mason. I really appreciate your taking the time here. I was fussing around for two hours and you solved it for me in 2 minutes!
Happy to be of service!
Last updated: Nov 06 2024 at 04:40 UTC