-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BitSet.valueOf(), toByteArray() similar methods #1
Comments
Similar method for |
I did a simple benchmark to see which faster among BitSet & SparseBitSet to create from byte[]. SparseBitSet is taking ~10 times more time than Can we improve this? Below is the very rudementary
|
SparseBitSet is serializable. Why don't you serialize and deserialize it instead? |
Hi,
Would be great if we've something like
BitSet.valueOf()
& 'BitSet.toByteArray()' in SparseBitSet too. Currently it is not direct to initialise SparseBitSet frombyte[]
The text was updated successfully, but these errors were encountered: