Returns the first (lowest) key currently in this sorted map. @return the first (lowest) key currently in this sorted map. @throws NoSuchElementException Map is empty.
()
| 279 | * @throws NoSuchElementException Map is empty. |
| 280 | */ |
| 281 | @Override |
| 282 | public K firstKey() { |
| 283 | return key(firstEntry()); |
| 284 | } |
| 285 | |
| 286 | /** |
| 287 | * Returns the last (highest) key currently in this sorted map. |
no test coverage detected