#include <Operators.hpp>
|
enum class | BinaryOperators {
LOGICAL_AND
, LOGICAL_OR
, BINARY_XOR
, BINARY_AND
,
BINARY_OR
, ADD
, SUB
, MUL
,
MOD
, DIV
, EQUALS
, NOT_EQUALS
,
LESS
, LESS_OR_EQUAL
, MORE
, MORE_OR_EQUAL
,
ASSIGN
} |
|
enum class | PrefixOperators {
PLUS
, MINUS
, LOGICAL_NOT
, BINARY_NEG
,
INCREMENT
, DECREMENT
} |
|
enum class | PostfixOperators { INCREMENT
, DECREMENT
} |
|
◆ BinaryOperators
Enumerator |
---|
LOGICAL_AND | |
LOGICAL_OR | |
BINARY_XOR | |
BINARY_AND | |
BINARY_OR | |
ADD | |
SUB | |
MUL | |
MOD | |
DIV | |
EQUALS | |
NOT_EQUALS | |
LESS | |
LESS_OR_EQUAL | |
MORE | |
MORE_OR_EQUAL | |
ASSIGN | |
◆ PostfixOperators
Enumerator |
---|
INCREMENT | |
DECREMENT | |
◆ PrefixOperators
Enumerator |
---|
PLUS | |
MINUS | |
LOGICAL_NOT | |
BINARY_NEG | |
INCREMENT | |
DECREMENT | |
◆ toString() [1/3]
static std::string abstraction::Operators::toString |
( |
BinaryOperators |
type | ) |
|
|
inlinestatic |
◆ toString() [2/3]
◆ toString() [3/3]
static std::string abstraction::Operators::toString |
( |
PrefixOperators |
type | ) |
|
|
inlinestatic |
The documentation for this class was generated from the following file: