Returns the number of empty buckets. Thread-safe for read-only hash tables.
| 891 | /// Returns the number of empty buckets. |
| 892 | /// Thread-safe for read-only hash tables. |
| 893 | int64_t EmptyBuckets() const { return num_buckets_ - num_filled_buckets_; } |
| 894 | |
| 895 | /// Returns the number of buckets |
| 896 | /// Thread-safe for read-only hash tables. |
no outgoing calls