Skip to content

Commit d8bddbf

Browse files
Update package documentation in subpackages
Bitarray, hashmap, threadsafe, and avl.
1 parent 5f3dce1 commit d8bddbf

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

bitarray/interface.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ be done in a single clock cycle (not counting the time it takes to convert)
2222
the resultant array back into integers). When Go implements a command
2323
to get trailing zeroes, the reconversion back into integers should be much faster.
2424
*/
25-
2625
package bitarray
2726

2827
// BitArray represents a structure that can be used to

hashmap/fastinteger/hashmap.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
//
1919
// This performance could be further enhanced by using a
2020
// better probing technique.
21-
2221
package fastinteger
2322

2423
const ratio = .75 // ratio sets the capacity the hashmap has to be at before it expands

threadsafe/err/error.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ I found myself needing a lock to protect writing to a common error interface
2020
from multiple go routines (channels are great but slow). This just makes
2121
that process more convenient.
2222
*/
23-
2423
package err
2524

2625
import "sync"

tree/avl/avl.go

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,11 @@ limitations under the License.
1515
*/
1616

1717
/*
18-
The immutable AVL tree can be used as the foundation for many functional
19-
data types. Combined with a B+ tree, you can make an immutable index which
20-
serves as the backbone for many different kinds of key/value stores.
18+
Package avl includes an immutable AVL tree.
19+
20+
AVL trees can be used as the foundation for many functional data types.
21+
Combined with a B+ tree, you can make an immutable index which serves as the
22+
backbone for many different kinds of key/value stores.
2123
2224
Time complexities:
2325
Space: O(n)

0 commit comments

Comments
 (0)