Hoogle Search
Within LTS Haskell 24.33 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
reader :: forall (m :: Type -> Type) a . (Monad m, Unbox a) => Unfold m (Array a) astreamly-core Streamly.Internal.Data.Array Unfold an array into a stream.
readerRev :: forall (m :: Type -> Type) a . (Monad m, Unbox a) => Unfold m (Array a) astreamly-core Streamly.Internal.Data.Array Unfold an array into a stream in reverse order.
readerUnsafe :: forall (m :: Type -> Type) a . (Monad m, Unbox a) => Unfold m (Array a) astreamly-core Streamly.Internal.Data.Array Unfold an array into a stream, does not check the end of the array, the user is responsible for terminating the stream within the array bounds. For high performance application where the end condition can be determined by a terminating fold. Written in the hope that it may be faster than "read", however, in the case for which this was written, "read" proves to be faster even though the core generated with unsafeRead looks simpler. Pre-release
readRev :: forall (m :: Type -> Type) a . Monad m => Array a -> Stream m astreamly-core Streamly.Internal.Data.Array.Generic No documentation available.
reader :: forall (m :: Type -> Type) a . Monad m => Unfold m (Array a) astreamly-core Streamly.Internal.Data.Array.Generic No documentation available.
readIORef :: Unbox a => IORef a -> IO astreamly-core Streamly.Internal.Data.MutArray Read a value from an IORef. Pre-release
readRev :: 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 in reverse order.
>>> readRev = Stream.unfold MutArray.readerRev
reader :: forall (m :: Type -> Type) a . (MonadIO m, Unbox a) => Unfold m (MutArray a) astreamly-core Streamly.Internal.Data.MutArray Unfold an array into a stream.
readerRev :: forall (m :: Type -> Type) a . (MonadIO m, Unbox a) => Unfold m (MutArray a) astreamly-core Streamly.Internal.Data.MutArray Unfold an array into a stream in reverse order.
readerRevWith :: (Monad m, Unbox a) => (forall b . () => IO b -> m b) -> Unfold m (MutArray a) astreamly-core Streamly.Internal.Data.MutArray No documentation available.