Contents | < Browse | Browse >
// equivalent to "->"
& equivalent to "AND"
|| equivalent to "OR"
=> equivalent to ">="
=< equivalent to "<="
>> and <<
works just like "Shr" and "Shl", but NO function is called for
this. Rotation is made in the place you use it, so it's much
faster. The syntax for this is just like in C: first you define
how many times to rotate, then put this operator and another
value/expression to be rotated. Please note that the whole right
and left expressions are rotated!!! so if you write:
a+b<<c+d
then (c+d) will be rotated (a+b) times!!!