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

Method GetNullMatchingBehavior

cpp/src/arrow/compute/api_scalar.cc:604–612  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

602SetLookupOptions::SetLookupOptions()
603 : SetLookupOptions({}, SetLookupOptions::NullMatchingBehavior::MATCH) {}
604SetLookupOptions::NullMatchingBehavior SetLookupOptions::GetNullMatchingBehavior() const {
605 if (!this->skip_nulls.has_value()) {
606 return this->null_matching_behavior;
607 } else if (this->skip_nulls.value()) {
608 return SetLookupOptions::SKIP;
609 } else {
610 return SetLookupOptions::MATCH;
611 }
612}
613constexpr char SetLookupOptions::kTypeName[];
614
615SliceOptions::SliceOptions(int64_t start, int64_t stop, int64_t step)

Callers 2

InitMethod · 0.80
InitMethod · 0.80

Calls 1

valueMethod · 0.45

Tested by

no test coverage detected