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.
reader :: forall (m :: Type -> Type) a . Monad m => Unfold m (Array a) astreamly-core Streamly.Data.Array.Generic No documentation available.
readRev :: forall (m :: Type -> Type) a . (MonadIO m, Unbox a) => MutArray a -> Stream m astreamly-core Streamly.Data.MutArray Convert a MutArray into a stream in reverse order.
>>> readRev = Stream.unfold MutArray.readerRev
reader :: forall (m :: Type -> Type) a . (MonadIO m, Unbox a) => Unfold m (MutArray a) astreamly-core Streamly.Data.MutArray Unfold an array into a stream.
readerRev :: forall (m :: Type -> Type) a . (MonadIO m, Unbox a) => Unfold m (MutArray a) astreamly-core Streamly.Data.MutArray Unfold an array into a stream in reverse order.
readRev :: forall (m :: Type -> Type) a . MonadIO m => MutArray a -> Stream m astreamly-core Streamly.Data.MutArray.Generic No documentation available.
reader :: forall (m :: Type -> Type) a . MonadIO m => Unfold m (MutArray a) astreamly-core Streamly.Data.MutArray.Generic Unfold an array into a stream.
-
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
-
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 -
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
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