Skip to content

Commit

Permalink
Use OrderedCollections
Browse files Browse the repository at this point in the history
Closes #392
  • Loading branch information
timholy committed Sep 16, 2018
1 parent bdd7aa0 commit 62a6449
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 565 deletions.
1 change: 1 addition & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version = "0.12.0"

[deps]
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down
7 changes: 3 additions & 4 deletions src/DataStructures.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ module DataStructures
eachindex, keytype, valtype
import Base: iterate

using InteractiveUtils: methodswith
using OrderedCollections
using OrderedCollections: not_iterator_of_pairs, rehash!
import OrderedCollections: filter, filter!, isordered

export complement, complement!

Expand Down Expand Up @@ -67,9 +69,6 @@ module DataStructures
include("disjoint_set.jl")
include("heaps.jl")

include("dict_support.jl")
include("ordered_dict.jl")
include("ordered_set.jl")
include("default_dict.jl")
include("trie.jl")

Expand Down
12 changes: 0 additions & 12 deletions src/dict_support.jl

This file was deleted.

Loading

0 comments on commit 62a6449

Please sign in to comment.