Hoogle Search

Within LTS Haskell 24.33 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. reader :: forall (m :: Type -> Type) a . Monad m => Unfold m (Array a) a

    streamly-core Streamly.Data.Array.Generic

    No documentation available.

  2. readRev :: 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 in reverse order.

    >>> readRev = Stream.unfold MutArray.readerRev
    

  3. reader :: forall (m :: Type -> Type) a . (MonadIO m, Unbox a) => Unfold m (MutArray a) a

    streamly-core Streamly.Data.MutArray

    Unfold an array into a stream.

  4. readerRev :: forall (m :: Type -> Type) a . (MonadIO m, Unbox a) => Unfold m (MutArray a) a

    streamly-core Streamly.Data.MutArray

    Unfold an array into a stream in reverse order.

  5. readRev :: forall (m :: Type -> Type) a . MonadIO m => MutArray a -> Stream m a

    streamly-core Streamly.Data.MutArray.Generic

    No documentation available.

  6. reader :: forall (m :: Type -> Type) a . MonadIO m => Unfold m (MutArray a) a

    streamly-core Streamly.Data.MutArray.Generic

    Unfold an array into a stream.

  7. readEither :: forall (m :: Type -> Type) . (MonadIO m, MonadCatch m) => FilePath -> Stream m (Either FilePath FilePath)

    streamly-core Streamly.FileSystem.Dir

    Read directories as Left and files as Right. Filter out "." and ".." entries. The output contains the names of the directories and files. Pre-release

  8. readChunks :: forall (m :: Type -> Type) . (MonadIO m, MonadCatch m) => FilePath -> Stream m (Array Word8)

    streamly-core Streamly.FileSystem.File

    readChunks file reads a stream of arrays from file file. The maximum size of a single array is limited to defaultChunkSize. The actual size read may be less than defaultChunkSize.

    readChunks = readChunksWith defaultChunkSize
    
    Pre-release

  9. readChunksWith :: forall (m :: Type -> Type) . (MonadIO m, MonadCatch m) => Int -> FilePath -> Stream m (Array Word8)

    streamly-core Streamly.FileSystem.File

    readChunksWith size file reads a stream of arrays from file file. The maximum size of a single array is specified by size. The actual size read may be less than or equal to size. Pre-release

  10. readChunks :: forall (m :: Type -> Type) . MonadIO m => Handle -> Stream m (Array Word8)

    streamly-core Streamly.FileSystem.Handle

    getChunks handle reads a stream of arrays from the specified file handle. The maximum size of a single array is limited to defaultChunkSize. The actual size read may be less than or equal to defaultChunkSize.

    >>> readChunks = Handle.readChunksWith IO.defaultChunkSize
    
    Pre-release

Page 279 of many | Previous | Next