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

Method false_count

cpp/src/arrow/array/array_primitive.cc:54–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52 : PrimitiveArray(boolean(), length, data, null_bitmap, null_count, offset) {}
53
54int64_t BooleanArray::false_count() const {
55 return this->length() - this->null_count() - this->true_count();
56}
57
58int64_t BooleanArray::true_count() const {
59 if (data_->MayHaveNulls()) {

Callers 10

TESTFunction · 0.45
FinishMethod · 0.45
FinishMethod · 0.45
FinishMethod · 0.45
FinishMethod · 0.45
AppendValuesMethod · 0.45
AppendValuesFunction · 0.45
UnsafeAppendToBitmapFunction · 0.45
array_test.ccFile · 0.45
FinishCommonMethod · 0.45

Calls 3

true_countMethod · 0.95
lengthMethod · 0.45
null_countMethod · 0.45

Tested by 1

TESTFunction · 0.36