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 :: forall (m :: Type -> Type) a . (MonadIO m, Unbox a) => MutArray a -> Stream m a

    streamly-core Streamly.Data.MutArray

    Convert a MutArray into a stream.

    >>> read = Stream.unfold MutArray.reader
    

  2. read :: forall (m :: Type -> Type) a . MonadIO m => MutArray a -> Stream m a

    streamly-core Streamly.Data.MutArray.Generic

    Generates a stream from the elements of a MutArray.

    >>> read = Stream.unfold MutArray.reader
    

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

    streamly-core Streamly.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.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.FileSystem.Handle

    Generate a byte stream from a file Handle.

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

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

    streamly-core Streamly.Internal.Console.Stdio

    Read a byte stream from standard input.

    read = Handle.read stdin
    read = Stream.unfold Stdio.reader ()
    
    Pre-release

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

    streamly-core Streamly.Internal.Data.Array

    Convert an Array into a stream. Pre-release

  8. read :: forall (m :: Type -> Type) a . Monad m => Array a -> Stream m a

    streamly-core Streamly.Internal.Data.Array.Generic

    No documentation available.

  9. read :: forall (m :: Type -> Type) a . (MonadIO m, Unbox a) => MutArray a -> Stream m a

    streamly-core Streamly.Internal.Data.MutArray

    Convert a MutArray into a stream.

    >>> read = Stream.unfold MutArray.reader
    

  10. read :: forall (m :: Type -> Type) a . MonadIO m => MutArray a -> Stream m a

    streamly-core Streamly.Internal.Data.MutArray.Generic

    Generates a stream from the elements of a MutArray.

    >>> read = Stream.unfold MutArray.reader
    

Page 8 of many | Previous | Next