Feature request -- inline mutable version of bit vector
rvnath opened this issue · 2 comments
rvnath commented
I understand that the current version of bitset returns a new copy of bitset for every bit op. Isn't it costly, especially for large bitsets to get a new object? Can we have an inline version please...?
infusion commented
I changed this behavior with 3.0.0 and surprisingly, there is not the big difference as one would expect, since instantiation of a prototyped class is quite fast. I'm currently working on the class, making it even faster. When I finish my current work, I'll back port it to a "inline version" as a reference of performance benchmarks.
infusion commented
BitSet now is mutable.