-
Notifications
You must be signed in to change notification settings - Fork 52
Open
Description
I need to create a bitset of known size with all bits set. Currently I do it with:
fn ones_with_capacity(bits: usize) -> FixedBitSet {
let mut everything = FixedBitSet::with_capacity(bits);
everything.set_range(.., true);
everything
}
This is not hard to write, but unlike Vec::with_capacity()
, FixedBitSet::with_capacity()
initializes the bitset to zeros, only for my code to immediately set it to ones. With largish bitsets I'd like to avoid the unnecessary initial resetting. Looking at assembly output in release mode, it seems that the compiler doesn't inline with_capacity()
, from which I infer that it cannot eliminate the initial zeroing.
The question is, what is the most efficient way to create an all-ones bitset? Is it the above code, or rather something like:
fn ones_with_capacity(bits: usize) -> FixedBitSet {
FixedBitSet::with_capacity_and_blocks(bits, std::iter::repeat(!0))
}
And should the crate include a constructor like FixedBitSet::ones_with_capacity()
(possibly with a more optimized implementation)?
Metadata
Metadata
Assignees
Labels
No labels