Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
24
Task/Bitwise-operations/Haskell/bitwise-operations.hs
Normal file
24
Task/Bitwise-operations/Haskell/bitwise-operations.hs
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
import Data.Bits
|
||||
|
||||
bitwise :: Int -> Int -> IO ()
|
||||
bitwise a b =
|
||||
mapM_
|
||||
print
|
||||
[ a .&. b
|
||||
, a .|. b
|
||||
, a `xor` b
|
||||
, complement a
|
||||
, shiftL a b -- left shift
|
||||
, 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)
|
||||
]
|
||||
|
||||
main :: IO ()
|
||||
main = bitwise 255 170
|
||||
Loading…
Add table
Add a link
Reference in a new issue