You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-16
Original file line number
Diff line number
Diff line change
@@ -14,9 +14,6 @@ Bitarray used to detect existence without having to resort to hashing with hashm
14
14
#### Futures:
15
15
A helpful tool to send a "broadcast" message to listeners. Channels have the issue that once one listener takes a message from a channel the other listeners aren't notified. There were many cases when I wanted to notify many listeners of a single event and this package helps.
16
16
17
-
#### Graph:
18
-
Still pretty specific to gotable, but contains logic required to maintain graph state. Also has logic to flatten graph into executable chunks.
19
-
20
17
#### Queue:
21
18
Package contains both a normal and priority queue. Both implementations never block on send and grow as much as necessary. Both also only return errors if you attempt to push to a disposed queue and will not panic like sending a message on a closed channel. The priority queue also allows you to place items in priority order inside the queue. If you give a useful hint to the regular queue, it is actually faster than a channel. The priority queue is somewhat slow currently and targeted for an update to a Fibonacci heap.
22
19
@@ -57,20 +54,12 @@ Initial implementation of a B+ tree. Delete method still needs added as well as
57
54
58
55
### Installation
59
56
60
-
1) Install Go 1.3 or higher.
61
-
62
-
2) Configure git to use SSH instead of HTTPS for github repositories. This
0 commit comments