Antlr4.Runtime.Misc.IntervalSet.Or C# (CSharp) Method

Or() public method

public Or ( IIntSet a ) : Antlr4.Runtime.Misc.IntervalSet
a IIntSet
return Antlr4.Runtime.Misc.IntervalSet
        public virtual Antlr4.Runtime.Misc.IntervalSet Or(IIntSet a)
        {
            Antlr4.Runtime.Misc.IntervalSet o = new Antlr4.Runtime.Misc.IntervalSet();
            o.AddAll(this);
            o.AddAll(a);
            return o;
        }

Same methods

IntervalSet::Or ( Antlr4 sets ) : Antlr4.Runtime.Misc.IntervalSet