Hoogle Search
Within LTS Haskell 24.3 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
numhask NumHask.Prelude The read function reads input from a string, which must be completely consumed by the input process. read fails with an error if the parse is unsuccessful, and it is therefore discouraged from being used in real applications. Use readMaybe or readEither for safe alternatives.
>>> read "123" :: Int 123
>>> read "hello" :: Int *** Exception: Prelude.read: no parse
-
basic-prelude BasicPrelude Parse Text to a value
-
ghc-lib-parser GHC.Prelude.Basic The read function reads input from a string, which must be completely consumed by the input process. read fails with an error if the parse is unsuccessful, and it is therefore discouraged from being used in real applications. Use readMaybe or readEither for safe alternatives.
>>> read "123" :: Int 123
>>> read "hello" :: Int *** Exception: Prelude.read: no parse
read :: (Contiguous arr, PrimMonad m, Element arr b) => Mutable arr (PrimState m) b -> Int -> m bcontiguous Data.Primitive.Contiguous Read a mutable array at the given index.
read :: (Contiguous arr, PrimMonad m, Element arr b) => Mutable arr (PrimState m) b -> Int -> m bcontiguous Data.Primitive.Contiguous.Class Read a mutable array at the given index.
-
matrices Data.Matrix.Class.Mutable No documentation available.
-
matrices Data.Matrix.Generic.Mutable No documentation available.
read :: (Context a, PrimMonad s) => MMatrix (PrimState s) a -> (Int, Int) -> s amatrices Data.Matrix.Mutable No documentation available.
read :: (Context a, PrimMonad s) => MMatrix (PrimState s) a -> (Int, Int) -> s amatrices Data.Matrix.Storable.Mutable No documentation available.
-
matrices Data.Matrix.Symmetric.Generic.Mutable No documentation available.