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

Function MakeTransformedIterator

cpp/src/arrow/util/iterator.h:343–345  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

341/// Any invalid status returned by the transformer will be returned immediately.
342template <typename T, typename V>
343Iterator<V> MakeTransformedIterator(Iterator<T> it, Transformer<T, V> op) {
344 return Iterator<V>(TransformIterator<T, V>(std::move(it), std::move(op)));
345}
346
347template <typename T>
348struct IterationTraits<Iterator<T>> {

Callers 4

MakeChunkingIteratorFunction · 0.85
TESTFunction · 0.85
MakeMethod · 0.85
MakeIteratorMethod · 0.85

Calls

no outgoing calls

Tested by 1

TESTFunction · 0.68