Antlr4.Runtime.Misc.Interval.StartsBeforeNonDisjoint C# (CSharp) Метод

StartsBeforeNonDisjoint() публичный Метод

Does this start at or before other? Nondisjoint
public StartsBeforeNonDisjoint ( Antlr4 other ) : bool
other Antlr4
Результат bool
        public bool StartsBeforeNonDisjoint(Antlr4.Runtime.Misc.Interval other)
        {
            return this.a <= other.a && this.b >= other.a;
        }