(@ParametricNullness K fromKey, @ParametricNullness K toKey)
| 979 | } |
| 980 | |
| 981 | @Override |
| 982 | public SortedMap<K, V> subMap(@ParametricNullness K fromKey, @ParametricNullness K toKey) { |
| 983 | return asMap(backingSet().subSet(fromKey, toKey), function); |
| 984 | } |
| 985 | |
| 986 | @Override |
| 987 | public SortedMap<K, V> headMap(@ParametricNullness K toKey) { |
nothing calls this directly
no test coverage detected