Struct fixedbitset::FixedBitSet [] [src]

pub struct FixedBitSet {
    // some fields omitted
}

Methods

impl FixedBitSet
[src]

fn with_capacity(bits: usize) -> Self

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

fn len(&self) -> usize

Return the length of the FixedBitSet.

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)

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.

Trait 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.

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]

type Output = bool

The returned type after indexing

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

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