61 auto Zip (C1&& c1, C2&& c2)
69 auto begin ()
const {
return ZIt { C1_.cbegin (), C1_.cend (), C2_.cbegin (), C2_.cend () }; }
70 auto end ()
const {
return ZIt { C1_.cend (), C1_.cend (), C2_.cend (), C2_.cend () }; }
73 return Range { std::forward<C1> (c1), std::forward<C2> (c2) };