Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

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

  1. chunkReader :: forall (m :: Type -> Type) . (MonadIO m, MonadCatch m) => Unfold m FilePath (Array Word8)

    streamly-core Streamly.Internal.FileSystem.File

    Unfolds a FilePath into a stream of Word8 arrays. Requests to the IO device are performed using a buffer of size defaultChunkSize. The size of arrays in the resulting stream are therefore less than or equal to defaultChunkSize. Pre-release

  2. chunkReaderFromToWith :: forall (m :: Type -> Type) . (MonadIO m, MonadCatch m) => Unfold m (Int, Int, Int, FilePath) (Array Word8)

    streamly-core Streamly.Internal.FileSystem.File

    Unfold the tuple (from, to, bufsize, filepath) into a stream of Word8 arrays. Read requests to the IO device are performed using a buffer of size bufsize starting from absolute offset of from till the absolute position of to. The size of an array in the resulting stream is always less than or equal to bufsize. Pre-release

  3. chunkReaderWith :: forall (m :: Type -> Type) . (MonadIO m, MonadCatch m) => Unfold m (Int, FilePath) (Array Word8)

    streamly-core Streamly.Internal.FileSystem.File

    Unfold the tuple (bufsize, filepath) into a stream of Word8 arrays. Read requests to the IO device are performed using a buffer of size bufsize. The size of an array in the resulting stream is always less than or equal to bufsize. Pre-release

  4. chunkReader :: forall (m :: Type -> Type) . MonadIO m => Unfold m Handle (Array Word8)

    streamly-core Streamly.Internal.FileSystem.Handle

    Unfolds a handle into a stream of Word8 arrays. Requests to the IO device are performed using a buffer of size defaultChunkSize. The size of arrays in the resulting stream are therefore less than or equal to defaultChunkSize.

    >>> chunkReader = Unfold.first IO.defaultChunkSize Handle.chunkReaderWith
    

  5. chunkReaderFromToWith :: forall (m :: Type -> Type) . MonadIO m => Unfold m (Int, Int, Int, Handle) (Array Word8)

    streamly-core Streamly.Internal.FileSystem.Handle

    The input to the unfold is (from, to, bufferSize, handle). It starts reading from the offset from in the file and reads up to the offset to.

  6. chunkReaderWith :: forall (m :: Type -> Type) . MonadIO m => Unfold m (Int, Handle) (Array Word8)

    streamly-core Streamly.Internal.FileSystem.Handle

    Unfold the tuple (bufsize, handle) into a stream of Word8 arrays. Read requests to the IO device are performed using a buffer of size bufsize. The size of an array in the resulting stream is always less than or equal to bufsize.

  7. tryReadMVar' :: MVar' a -> IO (Maybe a)

    strict-mutable-base Control.Concurrent.MVar.Strict

    tryReadMVar for an MVar'.

  8. notifyReady :: IO (Maybe ())

    systemd System.Systemd.Daemon

    Notify the systemd that the program is ready

  9. qReadFileBS :: FilePath -> Q ByteString

    th-utilities TH.RelativePaths

    Reads a file as a strict ByteString. The path is specified relative to the package's root directory, and addDependentfile is invoked on the target file.

  10. qReadFileLBS :: FilePath -> Q ByteString

    th-utilities TH.RelativePaths

    Reads a file as a lazy ByteString. The path is specified relative to the package's root directory, and addDependentfile is invoked on the target file.

Page 731 of many | Previous | Next