Copyright | (c) 2020 Andrew Lelechenko (c) 2020 Composewell Technologies |
---|---|
License | BSD-3-Clause |
Maintainer | [email protected] |
Stability | experimental |
Portability | GHC |
Safe Haskell | None |
Language | Haskell2010 |
Unicode.Internal.Bits
Contents
Description
Fast, static bitmap lookup utilities
Synopsis
- lookupBit :: Addr# -> Int -> Int -> Bool
- lookupWord8AsInt :: Addr# -> Int -> Int
- lookupWord8AsInt# :: Addr# -> Int# -> Int#
- lookupWord16AsInt :: Addr# -> Int -> Int
- lookupWord16AsInt# :: Addr# -> Int# -> Int#
- lookupWord32# :: Addr# -> Int# -> Word#
- unpackCString# :: Addr# -> [Char]
Bitmap lookup
lookupBit :: Addr# -> Int -> Int -> Bool Source #
lookupBit addr byteIndex bitIndex
looks up the bit stored in the byte
at index byteIndex
at the bit index bitIndex
using a bitmap starting at the
address addr
. The caller must make sure that the byte at address
(addr + byteIndex)
is legally accessible memory.
CString
unpackCString# :: Addr# -> [Char] #