Arithmetica.Tokenization.Token.IsLeftAssociative C# (CSharp) 메소드

IsLeftAssociative() 공개 메소드

public IsLeftAssociative ( ) : bool
리턴 bool
        public bool IsLeftAssociative()
        {
            return _type != TokenType.Exponentiation && _type != TokenType.Negation;
        }