(K toKey)
| 944 | } |
| 945 | |
| 946 | @Override |
| 947 | public SortedMap<K, V> headMap(K toKey) { |
| 948 | return asMap(backingSet().headSet(toKey), function); |
| 949 | } |
| 950 | |
| 951 | @Override |
| 952 | public SortedMap<K, V> tailMap(K fromKey) { |
nothing calls this directly
no test coverage detected