MCPcopy Create free account
hub / github.com/catboost/catboost / Zip

Function Zip

library/cpp/iterator/zip.h:123–128  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

121//! Usage: for (auto [ai, bi, ci] : Zip(a, b, c)) {...}
122template <typename... TContainers>
123auto Zip(TContainers&&... containers) {
124 return ::NPrivate::TZipper<TContainers...>::Zip(
125 std::forward<TContainers>(containers)...,
126 std::make_index_sequence<sizeof...(TContainers)>{}
127 );
128}

Callers 3

TESTFunction · 0.85
TESTFunction · 0.85
ZipMutableFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected