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

Method subSet

corpus/java/training/guava/collect/Sets.java:1663–1667  ·  view source on GitHub ↗
(
        E fromElement, boolean fromInclusive, E toElement, boolean toInclusive)

Source from the content-addressed store, hash-verified

1661 }
1662
1663 @Override
1664 public NavigableSet<E> subSet(
1665 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
1666 return forward.subSet(toElement, toInclusive, fromElement, fromInclusive).descendingSet();
1667 }
1668
1669 @Override
1670 public NavigableSet<E> headSet(E toElement, boolean inclusive) {

Callers

nothing calls this directly

Calls 3

descendingSetMethod · 0.45
subSetMethod · 0.45
standardSubSetMethod · 0.45

Tested by

no test coverage detected