utility-ht-0.0.16: Various small helper functions for Lists, Maybes, Tuples, Functions
Safe HaskellSafe-Inferred
LanguageHaskell98

Data.Bits.HT

Synopsis

Documentation

(.<<.) :: Bits a => a -> Int -> a infixl 7 Source #

Infix variant of shiftL. Precedence is chosen like multiplication since a .<<. k == a * 2^k.

(.>>.) :: Bits a => a -> Int -> a infixl 7 Source #

Infix variant of shiftR. Precedence is chosen like division since a .>>. k == a / 2^k.