MCPcopy Create free account
hub / github.com/antlr/codebuff / subMap

Method subMap

corpus/java/training/guava/collect/Maps.java:953–957  ·  view source on GitHub ↗
(
        K fromKey, boolean fromInclusive, K toKey, boolean toInclusive)

Source from the content-addressed store, hash-verified

951 }
952
953 @Override
954 public NavigableMap<K, V> subMap(
955 K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) {
956 return asMap(set.subSet(fromKey, fromInclusive, toKey, toInclusive), function);
957 }
958
959 @Override
960 public NavigableMap<K, V> headMap(K toKey, boolean inclusive) {

Callers

nothing calls this directly

Calls 2

asMapMethod · 0.65
subSetMethod · 0.45

Tested by

no test coverage detected