Uses of Interface
org.antlr.v4.runtime.misc.IntSet
-
Packages that use IntSet Package Description org.antlr.v4.runtime.misc -
-
Uses of IntSet in org.antlr.v4.runtime.misc
Classes in org.antlr.v4.runtime.misc that implement IntSet Modifier and Type Class Description class
IntervalSet
This class implements theIntSet
backed by a sorted array of non-overlapping intervals.Methods in org.antlr.v4.runtime.misc that return IntSet Modifier and Type Method Description IntSet
IntSet. addAll(IntSet set)
Modify the currentIntSet
object to contain all elements that are present in itself, the specifiedset
, or both.IntSet
IntSet. and(IntSet a)
Return a newIntSet
object containing all elements that are present in both the current set and the specified seta
.IntSet
IntSet. complement(IntSet elements)
Return a newIntSet
object containing all elements that are present inelements
but not present in the current set.IntSet
IntSet. or(IntSet a)
Return a newIntSet
object containing all elements that are present in the current set, the specified seta
, or both.IntSet
IntSet. subtract(IntSet a)
Return a newIntSet
object containing all elements that are present in the current set but not present in the input seta
.Methods in org.antlr.v4.runtime.misc with parameters of type IntSet Modifier and Type Method Description IntervalSet
IntervalSet. addAll(IntSet set)
IntSet
IntSet. addAll(IntSet set)
Modify the currentIntSet
object to contain all elements that are present in itself, the specifiedset
, or both.IntervalSet
IntervalSet. and(IntSet other)
Return a newIntSet
object containing all elements that are present in both the current set and the specified seta
.IntSet
IntSet. and(IntSet a)
Return a newIntSet
object containing all elements that are present in both the current set and the specified seta
.IntervalSet
IntervalSet. complement(IntSet vocabulary)
Return a newIntSet
object containing all elements that are present inelements
but not present in the current set.IntSet
IntSet. complement(IntSet elements)
Return a newIntSet
object containing all elements that are present inelements
but not present in the current set.IntervalSet
IntervalSet. or(IntSet a)
IntSet
IntSet. or(IntSet a)
Return a newIntSet
object containing all elements that are present in the current set, the specified seta
, or both.IntervalSet
IntervalSet. subtract(IntSet a)
IntSet
IntSet. subtract(IntSet a)
Return a newIntSet
object containing all elements that are present in the current set but not present in the input seta
.
-