| 50 | } |
| 51 | |
| 52 | void Bitmap::CopyFrom(const Bitmap& other) { |
| 53 | ::arrow::internal::CopyBitmap(other.data_, other.offset_, other.length_, mutable_data_, |
| 54 | offset_); |
| 55 | } |
| 56 | |
| 57 | void Bitmap::CopyFromInverted(const Bitmap& other) { |
| 58 | ::arrow::internal::InvertBitmap(other.data_, other.offset_, other.length_, |