Antlr4.Runtime.Misc.Interval.StartsBeforeNonDisjoint C# (CSharp) Method

StartsBeforeNonDisjoint() public method

Does this start at or before other? Nondisjoint
public StartsBeforeNonDisjoint ( Antlr4 other ) : bool
other Antlr4
return bool
        public bool StartsBeforeNonDisjoint(Antlr4.Runtime.Misc.Interval other)
        {
            return this.a <= other.a && this.b >= other.a;
        }