(K toKey)
| 915 | } |
| 916 | |
| 917 | @Override |
| 918 | public SortedMap<K, V> headMap(K toKey) { |
| 919 | return asMap(backingSet().headSet(toKey), function); |
| 920 | } |
| 921 | |
| 922 | @Override |
| 923 | public SortedMap<K, V> tailMap(K fromKey) { |
nothing calls this directly
no test coverage detected