Trait bitvec::store::BitStore [−][src]
Generalizes over the fundamental types for use in bitvec
data structures.
This trait must only be implemented on unsigned integer primitives with full
alignment. It cannot be implemented on u128
on any architecture, or on u64
on 32-bit systems.
The Sealed
supertrait ensures that this can only be implemented locally, and
will never be implemented by downstream crates on new types.
Associated Types
type Access: BitAccess<Self>
[src]
Shared/mutable access wrapper.
Within &BitSlice
and &mut BitSlice
contexts, the Access
type
governs all access to underlying memory that may be contended by
multiple slices. When a codepath knows that it has full, uncontended
ownership of a memory element of Self
, and no other codepath may
observe or modify it, then that codepath may skip the Access
type and
use plain accessors.
Associated Constants
const BITS: u8
[src]
The width, in bits, of this type.
const INDX: u8
[src]
The number of bits required to index a bit inside the type. This is always log2 of the type’s bit width.
const MASK: u8
[src]
The bitmask to turn an arbitrary number into a bit index. Bit indices are always stored in the lowest bits of an index value.
const FALSE: Self
[src]
The value with all bits unset.
const TRUE: Self
[src]
The value with all bits set.
const TYPENAME: &'static str
[src]
Name of the implementing type. This is only necessary until the compiler
stabilizes type_name()
.
Provided methods
fn get<O>(&self, place: BitIdx<Self>) -> bool where
O: BitOrder,
[src]
O: BitOrder,
Gets a specific bit in an element.
Safety
This method cannot be called from within an &BitSlice
context; it may
only be called by construction of an &Self
reference from a Self
element directly.
Parameters
&self
place
: A bit index in the element. The bit under this index, as governed by theO
BitOrder
, will be retrieved as abool
.
Returns
The value of the bit under place
.
Type Parameters
O
: ABitOrder
implementation to translate the index into a position.
fn set<O>(&mut self, place: BitIdx<Self>, value: bool) where
O: BitOrder,
[src]
O: BitOrder,
Sets a specific bit in an element to a given value.
Safety
This method cannot be called from within an &mut BitSlice
context; it
may only be called by construction of an &mut Self
reference from a
Self
element directly.
Parameters
place
: A bit index in the element. The bit under this index, as governed by theO
BitOrder
, will be set according tovalue
.
Type Parameters
O
: ABitOrder
implementation to translate the index into a position.
fn count_ones(self) -> usize
[src]
Counts how many bits in self
are set to 1
.
This zero-extends self
to usize
, and uses the usize::count_ones
inherent method.
Parameters
self
Returns
The number of bits in self
set to 1
. This is a usize
instead of a
u32
in order to ease arithmetic throughout the crate.
Examples
use bitvec::prelude::BitStore; assert_eq!(BitStore::count_ones(0u8), 0); assert_eq!(BitStore::count_ones(128u8), 1); assert_eq!(BitStore::count_ones(192u8), 2); assert_eq!(BitStore::count_ones(224u8), 3); assert_eq!(BitStore::count_ones(240u8), 4); assert_eq!(BitStore::count_ones(248u8), 5); assert_eq!(BitStore::count_ones(252u8), 6); assert_eq!(BitStore::count_ones(254u8), 7); assert_eq!(BitStore::count_ones(255u8), 8);
fn count_zeros(self) -> usize
[src]
Counts how many bits in self
are set to 0
.
This inverts self
, so all 0
bits are 1
and all 1
bits are 0
,
then zero-extends self
to usize
and uses the usize::count_ones
inherent method.
Parameters
self
Returns
The number of bits in self
set to 0
. This is a usize
instead of a
u32
in order to ease arithmetic throughout the crate.
Examples
use bitvec::prelude::BitStore; assert_eq!(BitStore::count_zeros(0u8), 8); assert_eq!(BitStore::count_zeros(1u8), 7); assert_eq!(BitStore::count_zeros(3u8), 6); assert_eq!(BitStore::count_zeros(7u8), 5); assert_eq!(BitStore::count_zeros(15u8), 4); assert_eq!(BitStore::count_zeros(31u8), 3); assert_eq!(BitStore::count_zeros(63u8), 2); assert_eq!(BitStore::count_zeros(127u8), 1); assert_eq!(BitStore::count_zeros(255u8), 0);