Hoogle Search

Within LTS Haskell 24.31 (ghc-9.10.3)

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

  1. readOutputQBounded :: forall m (t :: (Type -> Type) -> Type -> Type) a . MonadAsync m => SVar t m a -> m [ChildEvent a]

    streamly Streamly.Internal.Data.SVar

    No documentation available.

  2. enumerateFromBounded :: forall t (m :: Type -> Type) a . (IsStream t, Monad m, Enumerable a, Bounded a) => a -> t m a

    streamly Streamly.Internal.Data.Stream.IsStream

    enumerateFromBounded = enumerateFromTo from maxBound
    
    enumerateFrom for Bounded Enum types.

  3. enumerateFromThenSmallBounded :: forall t (m :: Type -> Type) a . (IsStream t, Monad m, Enumerable a, Bounded a) => a -> a -> t m a

    streamly Streamly.Internal.Data.Stream.IsStream

    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.

  4. postProcessBounded :: MonadRunInIO m => Channel m a -> m Bool

    streamly Streamly.Internal.Data.Stream.Prelude

    No documentation available.

  5. readOutputQBounded :: MonadRunInIO m => Bool -> Channel m a -> m [ChildEvent a]

    streamly Streamly.Internal.Data.Stream.Prelude

    No documentation available.

  6. strengthenBounded :: forall m n . (Typeable n, Integral n, Typeable m, Integral m, Bounded m, FiniteBits m) => n -> Either StrengthenFailure' m

    strongweak Strongweak.Strengthen

    Strengthen one numeric type into another. n must be "wider" than m. FiniteBits m is for error printing.

  7. newBoundedActor :: InboxLength -> ActorHandler message result -> IO (Actor message result)

    thread-supervisor Control.Concurrent.Supervisor

    Create a new actor with bounded inbox queue.

  8. newBoundedActor :: InboxLength -> ActorHandler message result -> IO (Actor message result)

    thread-supervisor Control.Concurrent.SupervisorInternal

    Create a new actor with bounded inbox queue.

  9. _BoundedInteger :: (Integral a, Bounded a, Show a) => TomlBiMap a Integer

    tomland Toml.Codec.BiMap.Conversion

    Helper BiMap for Integer and integral, bounded values.

  10. _EnumBounded :: (Show a, Enum a, Bounded a) => TomlBiMap a AnyValue

    tomland Toml.Codec.BiMap.Conversion

    BiMap for nullary sum data types (enumerations) with Show, Enum and Bounded instances. Usually used as the enumBounded combinator.

Page 47 of many | Previous | Next