Bitwise Operators

From GiderosMobile
Revision as of 09:25, 23 August 2018 by Hgy29 (talk | contribs) (Created page with "__NOTOC__ '''Supported platforms:''' <br/> '''Available since:''' Gideros 2017.10<br/> === Description === <br /> Bitwise operators to manipulate numbers.<br /><br /> a<b> |...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Supported platforms:
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