Skip to content

Commit 1de1362

Browse files
Update datastructures.go with new packages
1 parent d8bddbf commit 1de1362

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

datastructures.go

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,21 @@ importing this package instead of each subpackage individually.
1010
import (
1111
_ "github.com/Workiva/go-datastructures/augmentedtree"
1212
_ "github.com/Workiva/go-datastructures/bitarray"
13+
_ "github.com/Workiva/go-datastructures/btree/link"
14+
_ "github.com/Workiva/go-datastructures/btree/palm"
15+
_ "github.com/Workiva/go-datastructures/btree/plus"
1316
_ "github.com/Workiva/go-datastructures/futures"
17+
_ "github.com/Workiva/go-datastructures/hashmap/fastinteger"
18+
_ "github.com/Workiva/go-datastructures/numerics/optimization"
1419
_ "github.com/Workiva/go-datastructures/queue"
1520
_ "github.com/Workiva/go-datastructures/rangetree"
21+
_ "github.com/Workiva/go-datastructures/rangetree/skiplist"
1622
_ "github.com/Workiva/go-datastructures/set"
1723
_ "github.com/Workiva/go-datastructures/slice"
24+
_ "github.com/Workiva/go-datastructures/slice/skip"
25+
_ "github.com/Workiva/go-datastructures/sort"
1826
_ "github.com/Workiva/go-datastructures/threadsafe/err"
27+
_ "github.com/Workiva/go-datastructures/tree/avl"
28+
_ "github.com/Workiva/go-datastructures/trie/xfast"
29+
_ "github.com/Workiva/go-datastructures/trie/yfast"
1930
)

0 commit comments

Comments
 (0)