Skip to content

export of isordered method #45

@eulerkochy

Description

@eulerkochy

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?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions