-
Notifications
You must be signed in to change notification settings - Fork 834
/
datastructures.go
34 lines (30 loc) · 1.4 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
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
https://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"
)