If we don't own the data, this will create a new array which owns the data.
| 137 | |
| 138 | // If we don't own the data, this will create a new array which owns the data. |
| 139 | void Clear() { |
| 140 | DeallocateStorage(); |
| 141 | num_elements_ = 0; |
| 142 | elements_until_expand_ = 0; |
| 143 | } |
| 144 | |
| 145 | HashSet() : HashSet(kDefaultMinLoadFactor, kDefaultMaxLoadFactor) {} |
| 146 |
nothing calls this directly
no outgoing calls
no test coverage detected