//! This module contains the parallel iterator types for standard
//! collections. You will rarely need to interact with it directly
//! unless you have need to name one of the iterator types.
/// Convert an iterable collection into a parallel iterator by first
/// collecting into a temporary `Vec`, then iterating that.