pub trait IntoParallelSiteIterator<const N: usize> {
type Item: AsSiteView<N>;
type Iter: IndexedParallelIterator<Item = Self::Item>;
// Required method
fn into_par_site_iter(self) -> Self::Iter;
}
Expand description
A type that can be turned into a parallel iterator over SAF sites.
Required Associated Types§
Sourcetype Item: AsSiteView<N>
type Item: AsSiteView<N>
The type of each individual site.
Sourcetype Iter: IndexedParallelIterator<Item = Self::Item>
type Iter: IndexedParallelIterator<Item = Self::Item>
The type of iterator.
Required Methods§
Sourcefn into_par_site_iter(self) -> Self::Iter
fn into_par_site_iter(self) -> Self::Iter
Convert this type into a parallel SAF site iterator.