Jump to content

Bitwise operations: Difference between revisions

Line 961:
assert(bit.bxor(1,2) == 3)
assert(bit.bor(1,2,4,8,16,32,64,128) == 255)
</lang>
 
== The RiscLua dialect == for [http://lua.riscos.org.uk/ '''RISC OS'''] has
32-bit integers as the default number type. It provides binary operations
& (and), | (or), ^^ (xor), << (logical shift left), >> (logical shift right)
and a unary operation ~ (negate).
 
</lang>
 
=={{header|LSE64}}==
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.