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

Method size

cpp/src/arrow/util/hashing.h:487–489  ·  view source on GitHub ↗

The number of entries in the memo table +1 if null was added. (which is also 1 + the largest memo index)

Source from the content-addressed store, hash-verified

485 // The number of entries in the memo table +1 if null was added.
486 // (which is also 1 + the largest memo index)
487 int32_t size() const override {
488 return static_cast<int32_t>(hash_table_.size()) + (GetNull() != kKeyNotFound);
489 }
490
491 // Copy values starting from index `start` into `out_data`
492 template <typename Value>

Callers

nothing calls this directly

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected