(K fromKey, K toKey)
| 910 | } |
| 911 | |
| 912 | @Override |
| 913 | public SortedMap<K, V> subMap(K fromKey, K toKey) { |
| 914 | return asMap(backingSet().subSet(fromKey, toKey), function); |
| 915 | } |
| 916 | |
| 917 | @Override |
| 918 | public SortedMap<K, V> headMap(K toKey) { |
nothing calls this directly
no test coverage detected