forked from Workiva/go-datastructures
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatastructures.go
More file actions
34 lines (30 loc) · 1.4 KB
/
datastructures.go
File metadata and controls
34 lines (30 loc) · 1.4 KB
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
34
/*
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/fibheap"
_ "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"
)