Reference
Contents
Index
UseAll.@useall — Macro
@useall Module1 [Module2 ...]Import all useful names from the given modules into the caller's module namespace.
Unlike using Module, which only imports the explicitly exported names, @useall imports all names — including private and imported ones — except for hidden compiler-generated names (starting with #) and names already present in the target module (such as eval and include).
Supports top-level packages and submodules:
@useall TOML Base.IteratorsWhen Revise.jl is loaded, newly exported symbols are automatically imported after revision.
Examples
using UseAll
@useall TOML
@useall TOML Base.Iterators