MCPcopy
hub / github.com/google/guava / subMap

Method subMap

guava/src/com/google/common/collect/Maps.java:981–984  ·  view source on GitHub ↗
(@ParametricNullness K fromKey, @ParametricNullness K toKey)

Source from the content-addressed store, hash-verified

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) {

Callers

nothing calls this directly

Calls 3

backingSetMethod · 0.95
asMapMethod · 0.65
subSetMethod · 0.45

Tested by

no test coverage detected