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.
-
streamly-core Streamly.Internal.Data.MutByteArray No documentation available.
read :: forall (m :: Type -> Type) a . (MonadIO m, Storable a) => Unfold m (Ring a, Ptr a, Int) astreamly-core Streamly.Internal.Data.Ring Read n elements from the ring starting at the supplied ring head. If n is more than the ring size it keeps reading the ring in a circular fashion. If the ring is not full the user must ensure than n is less than or equal to the number of valid elements in the ring. Internal
read :: forall (m :: Type -> Type) . (MonadIO m, MonadCatch m) => FilePath -> Stream m FilePathstreamly-core Streamly.Internal.FileSystem.Dir Raw read of a directory. Pre-release
read :: forall (m :: Type -> Type) . (MonadIO m, MonadCatch m) => FilePath -> Stream m Word8streamly-core Streamly.Internal.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.Internal.FileSystem.Handle Generate a byte stream from a file Handle.
>>> read h = Stream.unfoldMany Array.reader $ Handle.readChunks h
Pre-releaseread :: Ptr CChar -> CSize -> IO Modulebinaryen Binaryen.Module No documentation available.
read :: MonadRead m => Input -> m ByteStringcabal-gild CabalGild.Unstable.Class.MonadRead Reads input from the given Input.
-
clash-prelude Clash.HaskellPrelude The read function reads input from a string, which must be completely consumed by the input process. read fails with an error if the parse is unsuccessful, and it is therefore discouraged from being used in real applications. Use readMaybe or readEither for safe alternatives.
>>> read "123" :: Int 123
>>> read "hello" :: Int *** Exception: Prelude.read: no parse
-
concurrent-split Control.Concurrent.Split.Chan No documentation available.
read :: C chan => chan Out a -> IO aconcurrent-split Control.Concurrent.Split.Class No documentation available.