macro_rules! cfg_extend {
($e:expr, $i:expr) => { ... };
}Expand description
Conditionally extend a collection from an iterator.
When the “parallel” feature is enabled, uses par_extend() from rayon.
Otherwise, uses standard extend().
macro_rules! cfg_extend {
($e:expr, $i:expr) => { ... };
}Conditionally extend a collection from an iterator.
When the “parallel” feature is enabled, uses par_extend() from rayon.
Otherwise, uses standard extend().