Skip to main content

cfg_into_iter

Macro cfg_into_iter 

Source
macro_rules! cfg_into_iter {
    ($e:expr, $min_len:expr) => { ... };
    ($e:expr) => { ... };
}
Expand description

Conditionally consume and iterate over a collection in parallel.

When the “parallel” feature is enabled, uses into_par_iter() from rayon. Otherwise, uses standard into_iter().