The number of entries in the memo table (which is also 1 + the largest memo index)
| 749 | // The number of entries in the memo table |
| 750 | // (which is also 1 + the largest memo index) |
| 751 | int32_t size() const override { |
| 752 | return static_cast<int32_t>(hash_table_.size() + (GetNull() != kKeyNotFound)); |
| 753 | } |
| 754 | |
| 755 | int64_t values_size() const { return binary_builder_.value_data_length(); } |
| 756 |