[][src]Trait streaming_algorithms::Intersect

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, 

Intersect.

Loading content...

Implementations on Foreign Types

impl Intersect for u8[src]

impl Intersect for u16[src]

impl Intersect for u32[src]

impl Intersect for u64[src]

impl Intersect for usize[src]

Loading content...

Implementors

impl<V: Hash> Intersect for HyperLogLogMagnitude<V>[src]

impl<V: ?Sized> Intersect for HyperLogLog<V> where
    V: Hash
[src]

Loading content...