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.

  1. read :: T (m :: Type -> Type) a -> m a

    data-ref Data.Ref

    No documentation available.

  2. read :: Read a => String -> a

    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
    

  3. read :: Read a => String -> a

    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
    

  4. read :: Read a => String -> a

    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
    

  5. read :: Read a => String -> a

    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
    

  6. read :: forall (m :: Type -> Type) a . (Monad m, Unbox a) => Array a -> Stream m a

    streamly Streamly.Data.Array.Foreign

    Convert an Array into a stream. Pre-release

  7. read :: forall (m :: Type -> Type) . (MonadCatch m, MonadAsync m) => (Word8, Word8, Word8, Word8) -> PortNumber -> Stream m Word8

    streamly Streamly.Internal.Network.Inet.TCP

    Read a stream from the supplied IPv4 host address and port number. Pre-release

  8. read :: forall (m :: Type -> Type) . MonadIO m => Socket -> Stream m Word8

    streamly Streamly.Internal.Network.Socket

    Generate a byte stream from a socket.

    >>> read = Socket.readWith defaultChunkSize
    
    Pre-release

  9. read :: forall (m :: Type -> Type) . MonadIO m => Socket -> Stream m Word8

    streamly Streamly.Network.Socket

    Generate a byte stream from a socket.

    >>> read = Socket.readWith defaultChunkSize
    
    Pre-release

  10. read :: forall (m :: Type -> Type) . Monad m => Unfold m ByteString Word8

    streamly-bytestring Streamly.External.ByteString

    Deprecated: Please use reader instead.

Page 10 of many | Previous | Next