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
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# BitArray: A simple bit-array/bitfield library in pure Ruby
2
2
3
-
Basic, pureRuby bit field. Works well for Bloom filters (the use case for which I originally wrote it).
3
+
A simple, pure-Ruby 'bit field' object. Works well for Bloom filters (the use case for which I originally wrote it).
4
4
5
5
Originally written in 2007 and left without significant update until 2017, it has now been updated to work within a typical, modern Ruby environment while maintaining the same API.
6
6
@@ -63,7 +63,7 @@ ba.to_s # "0000111111110000"
63
63
64
64
65
65
## History
66
-
- 1.2 in 2018 (Added option to skip reverse the bits for each byte)
66
+
- 1.2 in 2018 (Added option to skip reverse the bits for each byte by @dalibor)
67
67
- 1.1 in 2018 (fixed a significant bug)
68
68
- 1.0 in 2017 (updated for modern Ruby, more efficient storage, and 10th birthday)
69
69
- 0.0.1 in 2012 (original v5 released on GitHub)
@@ -77,7 +77,7 @@ ba.to_s # "0000111111110000"
77
77
78
78
Thanks to Michael Slade for encouraging me to update this library on its 10th birthday and for suggesting finally using String's getbyte and setbyte methods now that we're all on 1.9+ compatible implementations.
79
79
80
-
Further thanks to @tdeo, @JoshuaSP, and @m1lt0n for pull requests.
80
+
Further thanks to @tdeo, @JoshuaSP, @daliborand @m1lt0n for pull requests.
0 commit comments