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.

  1. reader :: forall (m :: Type -> Type) a . (Monad m, Unbox a) => Unfold m (Array a) a

    streamly-core Streamly.Internal.Data.Array

    Unfold an array into a stream.

  2. readerRev :: forall (m :: Type -> Type) a . (Monad m, Unbox a) => Unfold m (Array a) a

    streamly-core Streamly.Internal.Data.Array

    Unfold an array into a stream in reverse order.

  3. readerUnsafe :: forall (m :: Type -> Type) a . (Monad m, Unbox a) => Unfold m (Array a) a

    streamly-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

  4. readRev :: forall (m :: Type -> Type) a . Monad m => Array a -> Stream m a

    streamly-core Streamly.Internal.Data.Array.Generic

    No documentation available.

  5. reader :: forall (m :: Type -> Type) a . Monad m => Unfold m (Array a) a

    streamly-core Streamly.Internal.Data.Array.Generic

    No documentation available.

  6. readIORef :: Unbox a => IORef a -> IO a

    streamly-core Streamly.Internal.Data.MutArray

    Read a value from an IORef. Pre-release

  7. readRev :: forall (m :: Type -> Type) a . (MonadIO m, Unbox a) => MutArray a -> Stream m a

    streamly-core Streamly.Internal.Data.MutArray

    Convert a MutArray into a stream in reverse order.

    >>> readRev = Stream.unfold MutArray.readerRev
    

  8. reader :: forall (m :: Type -> Type) a . (MonadIO m, Unbox a) => Unfold m (MutArray a) a

    streamly-core Streamly.Internal.Data.MutArray

    Unfold an array into a stream.

  9. readerRev :: forall (m :: Type -> Type) a . (MonadIO m, Unbox a) => Unfold m (MutArray a) a

    streamly-core Streamly.Internal.Data.MutArray

    Unfold an array into a stream in reverse order.

  10. readerRevWith :: (Monad m, Unbox a) => (forall b . () => IO b -> m b) -> Unfold m (MutArray a) a

    streamly-core Streamly.Internal.Data.MutArray

    No documentation available.

Page 281 of many | Previous | Next