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

Method subSet

corpus/java/training/guava/collect/Maps.java:3758–3762  ·  view source on GitHub ↗
(
        K fromElement, boolean fromInclusive, K toElement, boolean toInclusive)

Source from the content-addressed store, hash-verified

3756 }
3757
3758 @Override
3759 public NavigableSet<K> subSet(
3760 K fromElement, boolean fromInclusive, K toElement, boolean toInclusive) {
3761 return map().subMap(fromElement, fromInclusive, toElement, toInclusive).navigableKeySet();
3762 }
3763
3764 @Override
3765 public NavigableSet<K> headSet(K toElement, boolean inclusive) {

Callers

nothing calls this directly

Calls 3

mapMethod · 0.95
navigableKeySetMethod · 0.45
subMapMethod · 0.45

Tested by

no test coverage detected