Hoogle Search

Within LTS Haskell 24.36 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. pokeBoundedPtr :: Unbox a => a -> BoundedPtr -> IO BoundedPtr

    streamly-core Streamly.Internal.Data.MutByteArray

    No documentation available.

  2. pokeBoundedPtrUnsafe :: Unbox a => a -> BoundedPtr -> IO BoundedPtr

    streamly-core Streamly.Internal.Data.MutByteArray

    No documentation available.

  3. enumerateFromBounded :: forall (m :: Type -> Type) a . (Monad m, Enumerable a, Bounded a) => a -> Stream m a

    streamly-core Streamly.Internal.Data.Stream

    >>> enumerateFromBounded from = Stream.enumerateFromTo from maxBound
    
    enumerateFrom for Bounded Enum types.

  4. enumerateFromThenSmallBounded :: forall (m :: Type -> Type) a . (Monad m, Enumerable a, Bounded a) => a -> a -> Stream m a

    streamly-core Streamly.Internal.Data.Stream

    enumerateFromThen for Enum types not larger than Int. Note: We convert the Enum to Int and enumerate the Int. If a type is bounded but does not have a Bounded instance then we can go on enumerating it beyond the legal values of the type, resulting in the failure of toEnum when converting back to Enum. Therefore we require a Bounded instance for this function to be safely used.

  5. enumerateFromIntegralBounded :: forall (m :: Type -> Type) a . (Monad m, Integral a, Bounded a) => Unfold m a a

    streamly-core Streamly.Internal.Data.Unfold

    No documentation available.

  6. enumerateFromSmallBounded :: forall (m :: Type -> Type) a . (Monad m, Enum a, Bounded a) => Unfold m a a

    streamly-core Streamly.Internal.Data.Unfold

    Enumerate from given starting Enum value from with stride of 1 till maxBound Internal

  7. enumerateFromThenIntegralBounded :: forall (m :: Type -> Type) a . (Monad m, Integral a, Bounded a) => Unfold m (a, a) a

    streamly-core Streamly.Internal.Data.Unfold

    No documentation available.

  8. enumerateFromThenSmallBounded :: forall (m :: Type -> Type) a . (Monad m, Enum a, Bounded a) => Unfold m (a, a) a

    streamly-core Streamly.Internal.Data.Unfold

    Enumerate from given starting Enum value from and next Enum value next with stride of (fromEnum next - fromEnum from) till maxBound. Internal

  9. enumerateFromThenToIntegralBounded :: forall (m :: Type -> Type) a . (Monad m, Integral a, Bounded a) => Unfold m (a, a, a) a

    streamly-core Streamly.Internal.Data.Unfold

    No documentation available.

  10. enumerateFromToIntegralBounded :: forall (m :: Type -> Type) a . (Monad m, Integral a, Bounded a) => Unfold m (a, a) a

    streamly-core Streamly.Internal.Data.Unfold

    No documentation available.

Page 37 of many | Previous | Next