Skip to content

Commit 46c2d3a

Browse files
committed
update readme
1 parent b3382b5 commit 46c2d3a

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

README.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,9 @@ Bitarray used to detect existence without having to resort to hashing with
2121
hashmaps. Requires entities have a uint64 unique identifier. Two
2222
implementations exist, regular and sparse. Sparse saves a great deal of space
2323
but insertions are O(log n). There are some useful functions on the BitArray
24-
interface to detect intersection between two bitarrays.
25-
26-
#### Bitmap
27-
28-
an extremely quick way of representing bitarrays of length 32 or 64 within
29-
a uint32 and uint64 respectively. This method provides bit switching and
30-
popcount operations of O(1).
24+
interface to detect intersection between two bitarrays. This package also
25+
includes bitmaps of length 32 and 64 that provide increased speed and O(1) for
26+
all operations by storing the bitmaps in unsigned integers rather than arrays.
3127

3228
#### Futures
3329

0 commit comments

Comments
 (0)