| STLExtras.h | 686 template <template <typename...> class ItType, typename... Args> class zippy { class in namespace:llvm::detail 707 zippy(Args &&... ts_) : ts(std::forward<Args>(ts_)...) {} function in class:llvm::detail::zippy 719 detail::zippy<detail::zip_shortest, T, U, Args...> zip(T &&t, U &&u, 721 return detail::zippy<detail::zip_shortest, T, U, Args...>( 728 detail::zippy<detail::zip_first, T, U, Args...> zip_first(T &&t, U &&u, 730 return detail::zippy<detail::zip_first, T, U, Args...>(
|