@manpage Operators
####. Postfix member acccess ####?. Postfix safe member acccess ####( ) Postfix Invoke ####[ ] Postfix Index
Used for Arrays indexing an Pointers dereferencing. ####-> Postfix base Index combined with member acces
Equivalent to [0].
codewise.
####< >
Postfix Generic instance
####-
Unary numeric negate
####~
Unary integer complement
####Not
Unary boolean invert
####*
Numeric multiplication
####/
Numeric division
####+
Numeric addition
####-
Numeric subtraction
####&
Integer and
####~
Integer xor
####|
Integer or
####<=>
Compare
####<
Less than
####>
Greater than
####<=
Less than or equal
####>=
Greater than or equal
####=
Equal
####<>
Not equal
####? Else
If-then-else
####?Else
Elvis operator
####And
Boolean and
####Cast
Cast operator
####Or
Boolean or
####False
Boolean false
####Identifier
Identifier
####Lambda
Lambda function
####Literal
Literal value
####Mod
Numeric modulo
####New
New object or array
####Null
Null value
####Self
Self instance
####Shl
Integer shift left
####Shr
Integer shift right
####Super
Super instance
####True
Boolean true
####Typeof
Typeof operator
####Varptr
Unary variable address