bitarray-bs-0.1.0.0: Bit array based on ByteString
Safe HaskellSafe-Inferred
LanguageHaskell2010

Data.ByteString.Bit

Contents

Synopsis

BIT

data B Source #

Constructors

O 
I 

Instances

Instances details
Show B Source # 
Instance details

Defined in Data.ByteString.Bit

Methods

showsPrec :: Int -> B -> ShowS #

show :: B -> String #

showList :: [B] -> ShowS #

Eq B Source # 
Instance details

Defined in Data.ByteString.Bit

Methods

(==) :: B -> B -> Bool #

(/=) :: B -> B -> Bool #

Ord B Source # 
Instance details

Defined in Data.ByteString.Bit

Methods

compare :: B -> B -> Ordering #

(<) :: B -> B -> Bool #

(<=) :: B -> B -> Bool #

(>) :: B -> B -> Bool #

(>=) :: B -> B -> Bool #

max :: B -> B -> B #

min :: B -> B -> B #

bit :: a -> a -> B -> a Source #

LIST

listToNum :: Bits n => [B] -> n Source #

listFromNum :: Bits n => Int -> n -> [B] Source #

QUEUE

type Queue = ([B], [B]) Source #

append :: Queue -> [B] -> Queue Source #