Returns a Set view of the keys contained in this map. Not required for Lab 8. If you don't implement this, throw an UnsupportedOperationException.
()
| 31 | /** Returns a Set view of the keys contained in this map. Not required for Lab 8. |
| 32 | * If you don't implement this, throw an UnsupportedOperationException. */ |
| 33 | Set<K> keySet(); |
| 34 | |
| 35 | /** Removes the mapping for the specified key from this map if present, |
| 36 | * or null if there is no such mapping. |