[][src]Trait handlegraph::handlegraph::IntoHandlesPar

pub trait IntoHandlesPar {
    type HandlesPar: ParallelIterator<Item = Handle>;
    fn handles_par(self) -> Self::HandlesPar;
}

Parallel access to all the handles in the graph.

Associated Types

type HandlesPar: ParallelIterator<Item = Handle>[src]

The Rayon ParallelIterator through all the handles in the graph.

Loading content...

Required methods

fn handles_par(self) -> Self::HandlesPar[src]

Return a parallel iterator on all the handles in the graph.

Loading content...

Implementors

impl<'a> IntoHandlesPar for &'a HashGraph[src]

impl<'a> IntoHandlesPar for &'a PackedGraph[src]

Loading content...