Hoogle Search
Within LTS Haskell 24.58 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
readWord8OffAddrAsWord8X64# :: Addr# -> Int# -> State# d -> (# State# d, Word8X64# #)ihaskell IHaskellPrelude Reads vector; offset in scalar elements. Warning: this is only available on LLVM and can fail with an unchecked exception.
readWord8X16Array# :: MutableByteArray# d -> Int# -> State# d -> (# State# d, Word8X16# #)ihaskell IHaskellPrelude Read a vector from specified index of mutable array. Warning: this is only available on LLVM and can fail with an unchecked exception.
readWord8X16OffAddr# :: Addr# -> Int# -> State# d -> (# State# d, Word8X16# #)ihaskell IHaskellPrelude Reads vector; offset in bytes. Warning: this is only available on LLVM and can fail with an unchecked exception.
readWord8X32Array# :: MutableByteArray# d -> Int# -> State# d -> (# State# d, Word8X32# #)ihaskell IHaskellPrelude Read a vector from specified index of mutable array. Warning: this is only available on LLVM and can fail with an unchecked exception.
readWord8X32OffAddr# :: Addr# -> Int# -> State# d -> (# State# d, Word8X32# #)ihaskell IHaskellPrelude Reads vector; offset in bytes. Warning: this is only available on LLVM and can fail with an unchecked exception.
readWord8X64Array# :: MutableByteArray# d -> Int# -> State# d -> (# State# d, Word8X64# #)ihaskell IHaskellPrelude Read a vector from specified index of mutable array. Warning: this is only available on LLVM and can fail with an unchecked exception.
readWord8X64OffAddr# :: Addr# -> Int# -> State# d -> (# State# d, Word8X64# #)ihaskell IHaskellPrelude Reads vector; offset in bytes. Warning: this is only available on LLVM and can fail with an unchecked exception.
readWordArray# :: MutableByteArray# d -> Int# -> State# d -> (# State# d, Word# #)ihaskell IHaskellPrelude Read a word-sized unsigned integer; offset in machine words. Warning: this can fail with an unchecked exception.
readWordOffAddr# :: Addr# -> Int# -> State# d -> (# State# d, Word# #)ihaskell IHaskellPrelude Read a word-sized unsigned integer; offset in machine words. On some platforms, the access may fail for an insufficiently aligned Addr#. Warning: this can fail with an unchecked exception.
readEither :: Read a => String -> Either Text aincipit-base Incipit.String.Conversion Version of readEither that returns Text in case of the parse error.
>>> readEither @Int "123" Right 123 >>> readEither @Int "aa" Left "Prelude.read: no parse"