RosettaCodeData/Task/Bitwise-operations/Clojure/bitwise-operations.clj
Ingy döt Net 518da4a923 B
2013-04-10 16:19:29 -07:00

7 lines
133 B
Clojure

(bit-and x y)
(bit-or x y)
(bit-xor x y)
(bit-not x)
(bit-shift-left x n)
(bit-shift-right x n)
;;There is no built-in for rotation.