Hoogle Search
Within LTS Haskell 24.4 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
read :: T (m :: Type -> Type) a -> m adata-ref Data.Ref No documentation available.
-
dimensional Numeric.Units.Dimensional.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
-
distribution-opensuse OpenSuse.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
-
faktory Faktory.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
-
hledger-web Hledger.Web.Import 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 :: forall (m :: Type -> Type) a . (Monad m, Unbox a) => Array a -> Stream m astreamly Streamly.Data.Array.Foreign Convert an Array into a stream. Pre-release
-
streamly Streamly.Internal.Network.Inet.TCP Read a stream from the supplied IPv4 host address and port number. Pre-release
read :: forall (m :: Type -> Type) . MonadIO m => Socket -> Stream m Word8streamly Streamly.Internal.Network.Socket Generate a byte stream from a socket.
>>> read = Socket.readWith defaultChunkSize
Pre-releaseread :: forall (m :: Type -> Type) . MonadIO m => Socket -> Stream m Word8streamly Streamly.Network.Socket Generate a byte stream from a socket.
>>> read = Socket.readWith defaultChunkSize
Pre-releaseread :: forall (m :: Type -> Type) . Monad m => Unfold m ByteString Word8streamly-bytestring Streamly.External.ByteString Deprecated: Please use reader instead.