[][src]Trait rinecs::storage::IntoParIter

pub trait IntoParIter {
    type Iter: ParallelIterator;
    fn into_pariter(self) -> Self::Iter;
}

Associated Types

Required Methods

Implementations on Foreign Types

impl<'a, T: 'a + Sync> IntoParIter for RwLockReadGuard<'a, DenseVec<T>>
[src]

impl<'a, T: 'a + Sync> IntoParIter for RwLockReadGuard<'a, DenseOneToNVec<T>>
[src]

impl<'a, T: 'a + Send + Sync + Debug> IntoParIter for RwLockReadGuard<'a, VecStorage<T>>
[src]

Implementors