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 :: Unbox a => Peeker a

    streamly-core Streamly.Internal.Data.MutByteArray

    No documentation available.

  2. read :: forall (m :: Type -> Type) a . (MonadIO m, Storable a) => Unfold m (Ring a, Ptr a, Int) a

    streamly-core Streamly.Internal.Data.Ring

    Read n elements from the ring starting at the supplied ring head. If n is more than the ring size it keeps reading the ring in a circular fashion. If the ring is not full the user must ensure than n is less than or equal to the number of valid elements in the ring. Internal

  3. read :: forall (m :: Type -> Type) . (MonadIO m, MonadCatch m) => FilePath -> Stream m FilePath

    streamly-core Streamly.Internal.FileSystem.Dir

    Raw read of a directory. Pre-release

  4. read :: forall (m :: Type -> Type) . (MonadIO m, MonadCatch m) => FilePath -> Stream m Word8

    streamly-core Streamly.Internal.FileSystem.File

    Generate a stream of bytes from a file specified by path. The stream ends when EOF is encountered. File is locked using multiple reader and single writer locking mode. Pre-release

  5. read :: forall (m :: Type -> Type) . MonadIO m => Handle -> Stream m Word8

    streamly-core Streamly.Internal.FileSystem.Handle

    Generate a byte stream from a file Handle.

    >>> read h = Stream.unfoldMany Array.reader $ Handle.readChunks h
    
    Pre-release

  6. read :: Ptr CChar -> CSize -> IO Module

    binaryen Binaryen.Module

    No documentation available.

  7. read :: MonadRead m => Input -> m ByteString

    cabal-gild CabalGild.Unstable.Class.MonadRead

    Reads input from the given Input.

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

    clash-prelude Clash.HaskellPrelude

    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
    

  9. read :: Out a -> IO a

    concurrent-split Control.Concurrent.Split.Chan

    No documentation available.

  10. read :: C chan => chan Out a -> IO a

    concurrent-split Control.Concurrent.Split.Class

    No documentation available.

Page 9 of many | Previous | Next