macro_rules! chain_eq {
($first:expr $( , $rest:expr )* $(,)*) => { ... };
}Expand description
An adaptor for itertools::chain! macro which creates an ExactSizeIterator.
Note: This macro collects the output of itertools::chain! into a vector. This may prevent
some compiler optimizations implying iterators.