| 55 | } |
| 56 | |
| 57 | void Bitmap::CopyFromInverted(const Bitmap& other) { |
| 58 | ::arrow::internal::InvertBitmap(other.data_, other.offset_, other.length_, |
| 59 | mutable_data_, offset_); |
| 60 | } |
| 61 | |
| 62 | bool Bitmap::Equals(const Bitmap& other) const { |
| 63 | if (length_ != other.length_) { |
no test coverage detected