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

Function MakeTransformedGenerator

cpp/src/arrow/util/async_generator.h:543–546  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

541/// This generator may queue up to 1 instance of T but will not delay
542template <typename T, typename V>
543AsyncGenerator<V> MakeTransformedGenerator(AsyncGenerator<T> generator,
544 Transformer<T, V> transformer) {
545 return TransformingGenerator<T, V>(generator, transformer);
546}
547
548/// \see MakeSerialReadaheadGenerator
549template <typename T>

Callers 5

MakeChunkingGeneratorFunction · 0.85
TESTFunction · 0.85
MakeAsyncMethod · 0.85
MakeAsyncIteratorMethod · 0.85
MakeAsyncIteratorMethod · 0.85

Calls

no outgoing calls

Tested by 1

TESTFunction · 0.68