MCPcopy Create free account
hub / github.com/apache/arrow / VectorIt

Function VectorIt

cpp/src/arrow/util/iterator_test.cc:119–121  ·  view source on GitHub ↗

Non-templated version of VectorIt to allow better type deduction

Source from the content-addressed store, hash-verified

117
118// Non-templated version of VectorIt<T> to allow better type deduction
119inline Iterator<TestInt> VectorIt(std::vector<TestInt> v) {
120 return MakeVectorIterator<TestInt>(std::move(v));
121}
122
123template <typename Fn, typename T>
124inline Iterator<T> FilterIt(Iterator<T> it, Fn&& fn) {

Callers 2

TESTFunction · 0.70
JoinFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected