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

IsOperand() public method

public IsOperand ( ) : bool
return bool
        public bool IsOperand()
        {
            return _type == TokenType.Numeric || _type == TokenType.Constant || _type == TokenType.Variable;
        }