[][src]Trait sunrise_kernel::utils::BitArrayExt

pub trait BitArrayExt<U>: BitArray<U> where
    U: BitField, 
{ fn set_bits_area(&mut self, range: Range<usize>, value: bool) { ... } }

Extension of the BitField trait, that adds the set_bits_area function.

Provided methods

fn set_bits_area(&mut self, range: Range<usize>, value: bool)

Sets a range of bits to value in the BitField.

Loading content...

Implementors

impl<T, U> BitArrayExt<U> for T where
    T: BitArray<U> + ?Sized,
    U: BitField, 
[src]

Loading content...