Struct hi_sparse_bitset::Reduce
source · pub struct Reduce<Op, S, Cache> { /* private fields */ }Expand description
Bitsets iterator reduction, as lazy bitset.
Constructed by reduce and reduce_w_cache.
Trait Implementations§
source§impl<Op, S, Cache> BitSetBase for Reduce<Op, S, Cache>
impl<Op, S, Cache> BitSetBase for Reduce<Op, S, Cache>
source§impl<'a, Op, S, Storage> IntoIterator for &'a Reduce<Op, S, Storage>
impl<'a, Op, S, Storage> IntoIterator for &'a Reduce<Op, S, Storage>
§type IntoIter = <<&'a Reduce<Op, S, Storage> as BitSetInterface>::IntoBlockIter as BlockIterator>::IndexIter
type IntoIter = <<&'a Reduce<Op, S, Storage> as BitSetInterface>::IntoBlockIter as BlockIterator>::IndexIter
Which kind of iterator are we turning this into?
source§impl<Op, S, Storage> IntoIterator for Reduce<Op, S, Storage>
impl<Op, S, Storage> IntoIterator for Reduce<Op, S, Storage>
§type IntoIter = <<Reduce<Op, S, Storage> as BitSetInterface>::IntoBlockIter as BlockIterator>::IndexIter
type IntoIter = <<Reduce<Op, S, Storage> as BitSetInterface>::IntoBlockIter as BlockIterator>::IndexIter
Which kind of iterator are we turning this into?
Auto Trait Implementations§
impl<Op, S, Cache> RefUnwindSafe for Reduce<Op, S, Cache>
impl<Op, S, Cache> Send for Reduce<Op, S, Cache>
impl<Op, S, Cache> Sync for Reduce<Op, S, Cache>
impl<Op, S, Cache> Unpin for Reduce<Op, S, Cache>
impl<Op, S, Cache> UnwindSafe for Reduce<Op, S, Cache>
Blanket Implementations§
source§impl<T> BitSetInterface for Twhere
T: LevelMasksExt + IntoIterator<Item = usize>,
impl<T> BitSetInterface for Twhere
T: LevelMasksExt + IntoIterator<Item = usize>,
type BlockIter<'a> = CachingBlockIter<&'a T> where T: 'a
fn block_iter(&self) -> <T as BitSetInterface>::BlockIter<'_>
type Iter<'a> = <<T as BitSetInterface>::BlockIter<'a> as BlockIterator>::IndexIter where T: 'a
fn iter(&self) -> <T as BitSetInterface>::Iter<'_>
type IntoBlockIter = CachingBlockIter<T>
fn into_block_iter(self) -> <T as BitSetInterface>::IntoBlockIter
fn contains(&self, index: usize) -> bool
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more