(K fromKey, K toKey)
| 939 | } |
| 940 | |
| 941 | @Override |
| 942 | public SortedMap<K, V> subMap(K fromKey, K toKey) { |
| 943 | return asMap(backingSet().subSet(fromKey, toKey), function); |
| 944 | } |
| 945 | |
| 946 | @Override |
| 947 | public SortedMap<K, V> headMap(K toKey) { |
nothing calls this directly
no test coverage detected