(K startKey)
| 739 | } |
| 740 | |
| 741 | public SortedMap<K, V> tailMap(K startKey) { |
| 742 | checkRange(startKey); |
| 743 | if (hasEnd) { |
| 744 | return new SubMap<K, V>(startKey, backingMap, endKey); |
| 745 | } |
| 746 | return new SubMap<K, V>(startKey, backingMap); |
| 747 | } |
| 748 | |
| 749 | @Override |
| 750 | public Collection<V> values() { |
nothing calls this directly
no test coverage detected