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

StartsAfterDisjoint() public method

Does this start completely after other? Disjoint
public StartsAfterDisjoint ( Antlr4 other ) : bool
other Antlr4
return bool
        public bool StartsAfterDisjoint(Antlr4.Runtime.Misc.Interval other)
        {
            return this.a > other.b;
        }