reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/ADT/STLExtras.h
  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)...) {}