pub struct Output<'o, const CANONICAL: bool, S> { /* private fields */ }
Implementations§
Source§impl<'s, 'o, const CANONICAL: bool, SEQ: Seq<'s>> Output<'o, CANONICAL, SEQ>
impl<'s, 'o, const CANONICAL: bool, SEQ: Seq<'s>> Output<'o, CANONICAL, SEQ>
Sourcepub fn values_u64(&self) -> impl ExactSizeIterator<Item = u64>
pub fn values_u64(&self) -> impl ExactSizeIterator<Item = u64>
Iterator over (canonical) u64 kmer-values associated with all minimizer positions.
Sourcepub fn values_u128(&self) -> impl ExactSizeIterator<Item = u128>
pub fn values_u128(&self) -> impl ExactSizeIterator<Item = u128>
Iterator over (canonical) u128 kmer-values associated with all minimizer positions.
Sourcepub fn pos_and_values_u64(&self) -> impl ExactSizeIterator<Item = (u32, u64)>
pub fn pos_and_values_u64(&self) -> impl ExactSizeIterator<Item = (u32, u64)>
Iterator over positions and (canonical) u64 kmer-values associated with all minimizer positions.
Sourcepub fn pos_and_values_u128(&self) -> impl ExactSizeIterator<Item = (u32, u128)>
pub fn pos_and_values_u128(&self) -> impl ExactSizeIterator<Item = (u32, u128)>
Iterator over positions and (canonical) u128 kmer-values associated with all minimizer positions.
Auto Trait Implementations§
impl<'o, const CANONICAL: bool, S> Freeze for Output<'o, CANONICAL, S>where
S: Freeze,
impl<'o, const CANONICAL: bool, S> RefUnwindSafe for Output<'o, CANONICAL, S>where
S: RefUnwindSafe,
impl<'o, const CANONICAL: bool, S> Send for Output<'o, CANONICAL, S>where
S: Send,
impl<'o, const CANONICAL: bool, S> Sync for Output<'o, CANONICAL, S>where
S: Sync,
impl<'o, const CANONICAL: bool, S> Unpin for Output<'o, CANONICAL, S>where
S: Unpin,
impl<'o, const CANONICAL: bool, S> UnwindSafe for Output<'o, CANONICAL, S>where
S: UnwindSafe,
Blanket Implementations§
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more