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

Function MakeMergedGenerator

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

Source from the content-addressed store, hash-verified

1477/// This generator may queue up to max_subscriptions instances of T
1478template <typename T>
1479AsyncGenerator<T> MakeMergedGenerator(AsyncGenerator<AsyncGenerator<T>> source,
1480 int max_subscriptions) {
1481 return MergedGenerator<T>(std::move(source), max_subscriptions);
1482}
1483
1484template <typename T>
1485Result<AsyncGenerator<T>> MakeSequencedMergedGenerator(

Callers 2

MakeScanNodeFunction · 0.85
TEST_PFunction · 0.85

Calls

no outgoing calls

Tested by 1

TEST_PFunction · 0.68