Home
last modified time | relevance | path

Searched refs:toListLE (Results 1 – 3 of 3) sorted by relevance

/dports/security/hs-cryptol/cryptol-2.11.0/_cabal_deps/bitwise-1.0.0.1/src/Data/Bits/
H A DBitwise.hs35 , toListLE
184 toListLE :: (Bits b) => b -> [Bool] {- ^ \[least significant bit, ..., most significant bit\] -}
185 toListLE b0 | Just n <- bitSizeMaybe b0 = P.map (testBit b0) [0..n-1] function
/dports/security/hs-cryptol/cryptol-2.11.0/_cabal_deps/bitwise-1.0.0.1/src/Codec/Image/
H A DPBM.hs57 import Data.Bits.Bitwise (fromListBE, toListLE)
295 bitReverse = fromListBE . toListLE
/dports/security/hs-cryptol/cryptol-2.11.0/_cabal_deps/bitwise-1.0.0.1/src/Data/Array/BitArray/
H A DIO.hs174 return . take r . concatMap Bitwise.toListLE $ (bytes :: [Word8])
312 Just w0 -> rest full (Just $! foldl1' f (Bitwise.toListLE w0))