-
Notifications
You must be signed in to change notification settings - Fork 39
Closed
Description
Is the isordered method exported? DataStructures.jl imports it from OrderedCollections. But, this is strange.
julia> using OrderedCollections;
julia> isordered(typeof(OrderedDict()))
ERROR: UndefVarError: isordered not defined
Stacktrace:
[1] top-level scope at none:0when I include("src/ordered_dict.jl"), I do get an expected output.
julia> include("src/ordered_dict.jl")
merge (generic function with 2 methods)
julia> isordered(typeof(OrderedDict()))
trueThis seems a bug to me. A simple export isordered is missing. But, can anyone else confirm?
Metadata
Metadata
Assignees
Labels
No labels