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

Function and_

cpp/src/arrow/compute/expression.cc:1728–1730  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1726Expression is_valid(Expression lhs) { return call("is_valid", {std::move(lhs)}); }
1727
1728Expression and_(Expression lhs, Expression rhs) {
1729 return call("and_kleene", {std::move(lhs), std::move(rhs)});
1730}
1731
1732Expression and_(const std::vector<Expression>& operands) {
1733 if (operands.empty()) return literal(true);

Callers 15

PartitionMethod · 0.85
ParseMethod · 0.85
FoldingAndFunction · 0.85
TEST_FFunction · 0.85
file_benchmark.ccFile · 0.85
TESTFunction · 0.85
TEST_FFunction · 0.85
TEST_PFunction · 0.85
GetGuaranteeMethod · 0.85
TEST_FFunction · 0.85
TEST_FMethod · 0.85

Calls 5

callFunction · 0.70
literalFunction · 0.70
emptyMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by 11

TEST_FFunction · 0.68
TESTFunction · 0.68
TEST_FFunction · 0.68
TEST_PFunction · 0.68
TEST_FFunction · 0.68
TEST_FMethod · 0.68
TEST_FFunction · 0.68
EXPECT_OK_AND_ASSIGNFunction · 0.68
ParseFunction · 0.68
TESTFunction · 0.68
TESTFunction · 0.68