macro_rules! cfg_chunks {
($e:expr, $size:expr) => { ... };
}Expand description
Conditionally iterate over chunks of a slice in parallel.
When the “parallel” feature is enabled, uses par_chunks() from rayon.
Otherwise, uses standard chunks().