Returns the last (highest) key currently in this sorted map. @return the last (highest) key currently in this sorted map. @throws NoSuchElementException Map is empty.
()
| 290 | * @throws NoSuchElementException Map is empty. |
| 291 | */ |
| 292 | @Override |
| 293 | public K lastKey() { |
| 294 | return key(lastEntry()); |
| 295 | } |
| 296 | |
| 297 | /** |
| 298 | * Copies all of the mappings from the specified map to this map. These |
no test coverage detected