Arithmetica.Tokenization.Token.IsLeftAssociative C# (CSharp) Method

IsLeftAssociative() public method

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