[][src]Struct broccoli::container::CollidingPairsPar

pub struct CollidingPairsPar<T, D> { /* fields omitted */ }

CollidingPairsPar created via TreeInd::collect_colliding_pairs_par All colliding pairs partitioned into mutually exclusive sets so that they can be traversed in parallel

Implementations

impl<T, D> CollidingPairsPar<T, D>[src]

pub fn get(&self, arr: &[T]) -> &[Vec<ColPair<'_, T, D>>]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

impl<T: Send + Sync, D: Send + Sync> CollidingPairsPar<T, D>[src]

pub fn for_every_pair_mut_par(
    &mut self,
    arr: &mut [T],
    func: impl Fn(&mut T, &mut T, &mut D) + Send + Sync + Copy
)
[src]

Trait Implementations

impl<T, D> From<CollidingPairsPar<T, D>> for CollidingPairs<T, D>[src]

Auto Trait Implementations

impl<T, D> RefUnwindSafe for CollidingPairsPar<T, D> where
    D: RefUnwindSafe,
    T: RefUnwindSafe
[src]

impl<T, D> Send for CollidingPairsPar<T, D> where
    D: Send
[src]

impl<T, D> Sync for CollidingPairsPar<T, D> where
    D: Sync
[src]

impl<T, D> Unpin for CollidingPairsPar<T, D> where
    D: Unpin
[src]

impl<T, D> UnwindSafe for CollidingPairsPar<T, D> where
    D: UnwindSafe,
    T: RefUnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.