Hoogle Search
Within LTS Haskell 24.4 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
read :: forall (m :: Type -> Type) a . (MonadIO m, Unbox a) => MutArray a -> Stream m astreamly-core Streamly.Data.MutArray Convert a MutArray into a stream.
>>> read = Stream.unfold MutArray.reader
read :: forall (m :: Type -> Type) a . MonadIO m => MutArray a -> Stream m astreamly-core Streamly.Data.MutArray.Generic Generates a stream from the elements of a MutArray.
>>> read = Stream.unfold MutArray.reader
read :: forall (m :: Type -> Type) . (MonadIO m, MonadCatch m) => FilePath -> Stream m FilePathstreamly-core Streamly.FileSystem.Dir Raw read of a directory. Pre-release
read :: forall (m :: Type -> Type) . (MonadIO m, MonadCatch m) => FilePath -> Stream m Word8streamly-core Streamly.FileSystem.File Generate a stream of bytes from a file specified by path. The stream ends when EOF is encountered. File is locked using multiple reader and single writer locking mode. Pre-release
read :: forall (m :: Type -> Type) . MonadIO m => Handle -> Stream m Word8streamly-core Streamly.FileSystem.Handle Generate a byte stream from a file Handle.
>>> read h = Stream.unfoldMany Array.reader $ Handle.readChunks h
Pre-releaseread :: forall (m :: Type -> Type) . MonadIO m => Stream m Word8streamly-core Streamly.Internal.Console.Stdio Read a byte stream from standard input.
read = Handle.read stdin read = Stream.unfold Stdio.reader ()
Pre-releaseread :: forall (m :: Type -> Type) a . (Monad m, Unbox a) => Array a -> Stream m astreamly-core Streamly.Internal.Data.Array Convert an Array into a stream. Pre-release
read :: forall (m :: Type -> Type) a . Monad m => Array a -> Stream m astreamly-core Streamly.Internal.Data.Array.Generic No documentation available.
read :: forall (m :: Type -> Type) a . (MonadIO m, Unbox a) => MutArray a -> Stream m astreamly-core Streamly.Internal.Data.MutArray Convert a MutArray into a stream.
>>> read = Stream.unfold MutArray.reader
read :: forall (m :: Type -> Type) a . MonadIO m => MutArray a -> Stream m astreamly-core Streamly.Internal.Data.MutArray.Generic Generates a stream from the elements of a MutArray.
>>> read = Stream.unfold MutArray.reader