Version 3.3.0.1

Operator enum

Namespace: Sirenix.Utilities
Assembly: Sirenix.Utilities
public enum Operator
Determines the type of operator.
See Also

Values

Addition
The + operator.
BitwiseAnd
The & operator.
BitwiseComplement
The ~ operator.
BitwiseOr
The | operator.
Division
The / operator.
Equality
The == operator.
ExclusiveOr
The ^ operator.
GreaterThan
The > operator.
GreaterThanOrEqual
The >= operator.
Inequality
The != operator.
LeftShift
The << operator.
LessThan
The < operator.
LessThanOrEqual
The <= operator.
LogicalAnd
The && operator.
LogicalNot
The ! operator.
LogicalOr
The || operator.
Modulus
The % operator.
Multiply
The * operator.
RightShift
The >> operator.
Subtraction
The - operator.