Bitwise Operators

From GiderosMobile
Revision as of 09:57, 23 August 2018 by Hgy29 (talk | contribs)

Supported platforms: android, ios, mac, pc
Available since: Gideros 2017.10

Description


Bitwise operators to manipulate numbers.

a | b   Bitwise 'a OR b'.
a & b   Bitwise 'a AND b'.
a ~ b   Bitwise 'a XOR b'.
a << b   Bitwise shift 'a' by 'b' left.
a >> b   Bitwise shift 'a' by 'b' right.
~ a   Bitwise 'NOT a'.






Methods

Events

Constants