Hoogle Search
Within LTS Haskell 24.51 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
streamly-core Streamly.Internal.FileSystem.Dir Like readEither but prefix the names of the files and directories with the supplied directory path.
readFiles :: forall (m :: Type -> Type) . (MonadIO m, MonadCatch m) => FilePath -> Stream m FilePathstreamly-core Streamly.Internal.FileSystem.Dir Read files only. Internal
reader :: forall (m :: Type -> Type) . (MonadIO m, MonadCatch m) => Unfold m FilePath FilePathstreamly-core Streamly.Internal.FileSystem.Dir No documentation available.
-
streamly-core Streamly.Internal.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.Internal.FileSystem.File Deprecated: Please use chunkReaderFromToWith instead
-
streamly-core Streamly.Internal.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
-
streamly-core Streamly.Internal.FileSystem.File Deprecated: Please use chunkReaderWith instead
-
streamly-core Streamly.Internal.FileSystem.File Deprecated: Please use readerWith instead
reader :: forall (m :: Type -> Type) . (MonadIO m, MonadCatch m) => Unfold m FilePath Word8streamly-core Streamly.Internal.FileSystem.File Unfolds a file path into a byte stream. IO requests to the device are performed in sizes of defaultChunkSize. Pre-release
-
streamly-core Streamly.Internal.FileSystem.File Unfolds the tuple (bufsize, filepath) into a byte stream, read requests to the IO device are performed using buffers of bufsize. Pre-release