Create a new element array @param s @return Reference to the element array
(int s)
| 261 | * @return Reference to the element array |
| 262 | */ |
| 263 | @SuppressWarnings("unchecked") |
| 264 | Entry<K, V>[] newElementArray(int s) { |
| 265 | return new Entry[s]; |
| 266 | } |
| 267 | |
| 268 | /** |
| 269 | * Constructs a new empty {@code HashMap} instance. |