Checks the capacity of the hash table and resizes it if necessary. @return true if the hash table was resized
()
| 68 | * @return {@code true} if the hash table was resized |
| 69 | */ |
| 70 | protected final boolean checkCapacity() { |
| 71 | return checkCapacity((index, bucket) -> { }); |
| 72 | } |
| 73 | |
| 74 | /** |
| 75 | * Checks the capacity of the hash table and resizes it if necessary. |