The hash set expands when Size() reaches ElementsUntilExpand().
| 516 | |
| 517 | // The hash set expands when Size() reaches ElementsUntilExpand(). |
| 518 | size_t ElementsUntilExpand() const { |
| 519 | return elements_until_expand_; |
| 520 | } |
| 521 | |
| 522 | size_t NumBuckets() const { |
| 523 | return num_buckets_; |
nothing calls this directly
no outgoing calls
no test coverage detected