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

Function RunEndEncoded

cpp/src/arrow/compute/kernel.cc:336–340  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

334};
335
336std::shared_ptr<TypeMatcher> RunEndEncoded(
337 std::shared_ptr<TypeMatcher> value_type_matcher) {
338 return std::make_shared<RunEndEncodedMatcher>(RunEndInteger(),
339 std::move(value_type_matcher));
340}
341
342std::shared_ptr<TypeMatcher> RunEndEncoded(Type::type value_type_id) {
343 return RunEndEncoded(SameTypeId(value_type_id));

Callers 4

TESTFunction · 0.70
ArrayOfMethod · 0.50
PopulateFilterKernelsFunction · 0.50

Calls 2

RunEndIntegerFunction · 0.85
SameTypeIdFunction · 0.85

Tested by 1

TESTFunction · 0.56