(K fromKey, K toKey)
| 2106 | } |
| 2107 | |
| 2108 | @Override |
| 2109 | public SortedMap<K, V2> subMap(K fromKey, K toKey) { |
| 2110 | return transformEntries(fromMap().subMap(fromKey, toKey), transformer); |
| 2111 | } |
| 2112 | |
| 2113 | @Override |
| 2114 | public SortedMap<K, V2> tailMap(K fromKey) { |
nothing calls this directly
no test coverage detected