-
Notifications
You must be signed in to change notification settings - Fork 0
stdlib_math_bitwise
Neil Tallim edited this page Jul 14, 2015
·
1 revision
The bitwise
namespace provides bitwise-operation-related functions.
Returns the bitwise and of x
and y
.
Returns the bitwise or of x
and y
.
Returns the bitwise xor of x
and y
.
Returns the bitwise not of x
.
Returns x
shifted left by y
bits.
Returns x
shifted right by y
bits.