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.
read :: (Context a, PrimMonad s) => MMatrix (PrimState s) a -> (Int, Int) -> s amatrices Data.Matrix.Unboxed.Mutable No documentation available.
read :: Transport -> Int -> IO ByteStringmongoDB Database.MongoDB.Transport No documentation available.
-
prelude-compat Prelude2010 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 :: (HasCallStack, PrimMonad m, MVector v a) => v (PrimState m) a -> Int -> m arebase Rebase.Data.Vector.Generic.Mutable No documentation available.
read :: PrimMonad m => MVector (PrimState m) a -> Int -> m arebase Rebase.Data.Vector.Mutable No documentation available.
read :: (PrimMonad m, Prim a) => MVector (PrimState m) a -> Int -> m arebase Rebase.Data.Vector.Primitive.Mutable No documentation available.
read :: (PrimMonad m, Storable a) => MVector (PrimState m) a -> Int -> m arebase Rebase.Data.Vector.Storable.Mutable No documentation available.
read :: (PrimMonad m, Unbox a) => MVector (PrimState m) a -> Int -> m arebase Rebase.Data.Vector.Unboxed.Mutable No documentation available.
-
rebase Rebase.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
-
base-prelude BasePrelude 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