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

Method Equals

cpp/src/arrow/util/bitmap.cc:62–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

60}
61
62bool 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
69int64_t Bitmap::BitLength(const Bitmap* bitmaps, size_t N) {
70 for (size_t i = 1; i < N; ++i) {

Callers 3

CompareJsonFunction · 0.45
SharedPtrEqualsFunction · 0.45
TESTFunction · 0.45

Calls 2

BitmapEqualsFunction · 0.70
offsetMethod · 0.45

Tested by 2

CompareJsonFunction · 0.36
TESTFunction · 0.36