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