forked from Workiva/go-datastructures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
datastructures.go
33 lines (29 loc) · 1.35 KB
/
datastructures.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
Package datastructures exists solely to aid consumers of the go-datastructures
library when using dependency managers. Depman, for instance, will work
correctly with any datastructure by simply importing this package instead of
each subpackage individually.
For more information about the datastructures package, see the README at
http://github.com/Workiva/go-datastructures
*/
package datastructures
import (
_ "github.com/Workiva/go-datastructures/augmentedtree"
_ "github.com/Workiva/go-datastructures/bitarray"
_ "github.com/Workiva/go-datastructures/btree/palm"
_ "github.com/Workiva/go-datastructures/btree/plus"
_ "github.com/Workiva/go-datastructures/futures"
_ "github.com/Workiva/go-datastructures/hashmap/fastinteger"
_ "github.com/Workiva/go-datastructures/numerics/optimization"
_ "github.com/Workiva/go-datastructures/queue"
_ "github.com/Workiva/go-datastructures/rangetree"
_ "github.com/Workiva/go-datastructures/rangetree/skiplist"
_ "github.com/Workiva/go-datastructures/set"
_ "github.com/Workiva/go-datastructures/slice"
_ "github.com/Workiva/go-datastructures/slice/skip"
_ "github.com/Workiva/go-datastructures/sort"
_ "github.com/Workiva/go-datastructures/threadsafe/err"
_ "github.com/Workiva/go-datastructures/tree/avl"
_ "github.com/Workiva/go-datastructures/trie/xfast"
_ "github.com/Workiva/go-datastructures/trie/yfast"
)