Jump to content

Bitwise operations: Difference between revisions

(→‎{{header|Haskell}}: Pruned out a little noise, added output)
Line 1,460:
, shiftR a b -- arithmetic right shift
, shift a b -- You can also use the "unified" shift function;
-- positive is for left shift, negative is for right shift
, shift a (-b)
, rotateL a b -- rotate left
, rotateR a b -- rotate right
, rotate a b -- You can also use the "unified" rotate function;
-- positive is for left rotate, negative is for right rotate
, rotate a (-b)
]
9,659

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.