Home »
Code Examples »
Lua Code Examples
Lua - Bitwise Operators Code Example
The code for Bitwise Operators
Lua supports the following bitwise operators:
&: bitwise AND
|: bitwise OR
~: bitwise exclusive OR
>>: right shift
<<: left shift
~: unary bitwise NOT
Code by IncludeHelp,
on January 2, 2023 20:16