Trait streaming_algorithms::Intersect [−][src]
pub trait Intersect {
fn intersect<'a>(
iter: impl Iterator<Item = &'a Self>
) -> Option<Self>
where
Self: Sized + 'a;
}Intersect zero or more &Self to create Option<Self>.
Required Methods
fn intersect<'a>(
iter: impl Iterator<Item = &'a Self>
) -> Option<Self> where
Self: Sized + 'a,
iter: impl Iterator<Item = &'a Self>
) -> Option<Self> where
Self: Sized + 'a,
Intersect.
Implementations on Foreign Types
impl Intersect for u8[src]
impl Intersect for u8impl Intersect for u16[src]
impl Intersect for u16impl Intersect for u32[src]
impl Intersect for u32impl Intersect for u64[src]
impl Intersect for u64impl Intersect for usize[src]
impl Intersect for usizeImplementors
impl<V: ?Sized> Intersect for HyperLogLog<V> where
V: Hash,