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