/// Order of parallel iteration, which might be:
/// * in the order of the input as in regular sequential iterators, or
/// * arbitrary.
///
/// This is important for certain computations:
///
/// * [`collect`] will return exactly the same result of its sequential counterpart
/// when `Ordered` is used. However, the elements might (but not necessarily)
/// be in arbitrary order when `Arbitrary` is used.
/// * [`first`] returns the first element of the iterator when `Ordered`, might
/// return any element when `Arbitrary`.
/// * [`find`] returns the first element satisfying the predicate when `Ordered`,
/// might return any element satisfying the predicate when `Arbitrary`
/// (sometimes this method is called `find_any`).
///
/// [`collect`]: crate::Par::collect
/// [`first`]: crate::Par::first
/// [`find`]: crate::Par::find