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

Function Join

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

Source from the content-addressed store, hash-verified

399}
400
401Iterator<TestInt> Join(TestInt a, TestInt b) {
402 std::vector<Iterator<TestInt>> joined{2};
403 joined[0] = VectorIt({a});
404 joined[1] = VectorIt({b});
405
406 return FlattenIt(VectorIt(std::move(joined)));
407}
408
409Iterator<TestInt> Join(TestInt a, Iterator<TestInt> b) {
410 std::vector<Iterator<TestInt>> joined{2};

Callers 4

GenerateTestCaseMethod · 0.85
TEST_PFunction · 0.85
TESTFunction · 0.85
JoinMethod · 0.85

Calls 2

FlattenItFunction · 0.85
VectorItFunction · 0.70

Tested by

no test coverage detected