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