Struct fixedbitset::FixedBitSet [] [src]

pub struct FixedBitSet {
    // some fields omitted
}
[]

FixedBitSet is a simple fixed size set of bits that can be enabled (1 / true) or disabled (0 / false).

Methods

impl FixedBitSet
[src]

fn with_capacity(bits: usize) -> Self[]

Create a new FixedBitSet with a specific number of bits, all initially clear.

fn grow(&mut self, bits: usize)[]

Grow capacity to bits, all new bits initialized to zero

fn len(&self) -> usize[]

Return the length of the FixedBitSet in bits.

fn contains(&self, bit: usize) -> bool[]

Return true if the bit is enabled in the FixedBitSet, false otherwise.

Note: bits outside the capacity are always disabled.

fn clear(&mut self)[]

Clear all bits.

fn insert(&mut self, bit: usize)[]

Panics if bit is out of bounds.

fn set(&mut self, bit: usize, enabled: bool)[]

Panics if bit is out of bounds.

fn as_slice(&self) -> &[u32][]

View the bitset as a slice of u32 blocks

fn as_mut_slice(&mut self) -> &mut [u32][]

View the bitset as a mutable slice of u32 blocks. Writing past the bitlength in the last will cause contains to return potentially incorrect results for bits past the bitlength.

Trait Implementations

impl Clone for FixedBitSet
[src]

fn clone(&self) -> Self[]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0
[]

Performs copy-assignment from source. Read more

impl Index<usize> for FixedBitSet
[src]

[]

Return true if the bit is enabled in the bitset, or false otherwise.

type Output = bool

The returned type after indexing

fn index(&self, bit: usize) -> &bool[]

The method for the indexing (Foo[Bar]) operation

Derived Implementations

impl Hash for FixedBitSet
[src]

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)[]

Feeds this value into the state given, updating the hasher as necessary.

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0
[]

Feeds a slice of this type into the state provided.

impl Ord for FixedBitSet
[src]

fn cmp(&self, __arg_0: &FixedBitSet) -> Ordering[]

This method returns an Ordering between self and other. Read more

impl PartialOrd for FixedBitSet
[src]

fn partial_cmp(&self, __arg_0: &FixedBitSet) -> Option<Ordering>[]

This method returns an ordering between self and other values if one exists. Read more

fn lt(&self, __arg_0: &FixedBitSet) -> bool[]

This method tests less than (for self and other) and is used by the < operator. Read more

fn le(&self, __arg_0: &FixedBitSet) -> bool[]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

fn gt(&self, __arg_0: &FixedBitSet) -> bool[]

This method tests greater than (for self and other) and is used by the > operator. Read more

fn ge(&self, __arg_0: &FixedBitSet) -> bool[]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Eq for FixedBitSet
[src]

impl PartialEq for FixedBitSet
[src]

fn eq(&self, __arg_0: &FixedBitSet) -> bool[]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &FixedBitSet) -> bool[]

This method tests for !=.

impl Debug for FixedBitSet
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result[]

Formats the value using the given formatter.