Create a new element array @param s @return Reference to the element array
(int s)
| 248 | * @return Reference to the element array |
| 249 | */ |
| 250 | @SuppressWarnings("unchecked") |
| 251 | Entry<K, V>[] newElementArray(int s) { |
| 252 | return new Entry[s]; |
| 253 | } |
| 254 | |
| 255 | /** |
| 256 | * Constructs a new empty {@code HashMap} instance. |