You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:0
when 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()))
true
This seems a bug to me. A simple export isordered is missing. But, can anyone else confirm?
The text was updated successfully, but these errors were encountered:
For reference, CategoricalArrays and Arrow.jl use the name isordered too (see JuliaData/DataAPI.jl#26). If OrderedCollections ever wanted to export isordered it would be nice to coordinate. I'm not sure to what extent it would make sense for these to be the same function, though.
Is the
isordered
method exported?DataStructures.jl
imports it fromOrderedCollections
. But, this is strange.when I
include("src/ordered_dict.jl")
, I do get an expected output.This seems a bug to me. A simple
export isordered
is missing. But, can anyone else confirm?The text was updated successfully, but these errors were encountered: