(@ParametricNullness K toKey)
| 984 | } |
| 985 | |
| 986 | @Override |
| 987 | public SortedMap<K, V> headMap(@ParametricNullness K toKey) { |
| 988 | return asMap(backingSet().headSet(toKey), function); |
| 989 | } |
| 990 | |
| 991 | @Override |
| 992 | public SortedMap<K, V> tailMap(@ParametricNullness K fromKey) { |
nothing calls this directly
no test coverage detected