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.
-
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
-
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
-
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
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
-
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.
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.
tryReadMVar' :: MVar' a -> IO (Maybe a)strict-mutable-base Control.Concurrent.MVar.Strict tryReadMVar for an MVar'.
-
systemd System.Systemd.Daemon Notify the systemd that the program is ready
qReadFileBS :: FilePath -> Q ByteStringth-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.
qReadFileLBS :: FilePath -> Q ByteStringth-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.