reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
592 struct zip_first : public zip_common<zip_first<Iters...>, Iters...> { 592 struct zip_first : public zip_common<zip_first<Iters...>, Iters...> { 593 using Base = zip_common<zip_first<Iters...>, Iters...>; 593 using Base = zip_common<zip_first<Iters...>, Iters...>; 595 bool operator==(const zip_first<Iters...> &other) const { 599 zip_first(Iters &&... ts) : Base(std::forward<Iters>(ts)...) {}