Crate par_map [] [src]

This crate provides an easy way to get parallel iteration. The contract of the added method are (almost) exacly the same as the method without the par_ prefix proposed in std.

Structs

FlatMap

An iterator that maps each element to an iterator, and yields the elements of the produced iterators.

Map

An iterator that maps the values of iter with f.

Traits

ParMap

This trait extends std::iter::Iterator with parallel iterator adaptors. Just use it to get access to the methods: