| 60 | } |
| 61 | |
| 62 | bool Bitmap::Equals(const Bitmap& other) const { |
| 63 | if (length_ != other.length_) { |
| 64 | return false; |
| 65 | } |
| 66 | return BitmapEquals(data_, offset_, other.data_, other.offset(), length_); |
| 67 | } |
| 68 | |
| 69 | int64_t Bitmap::BitLength(const Bitmap* bitmaps, size_t N) { |
| 70 | for (size_t i = 1; i < N; ++i) { |