Hoogle Search

Within LTS Haskell 24.41 (ghc-9.10.3)

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

  1. data ParallelLabel

    data-effects Data.Effect.Concurrent.Parallel

    No documentation available.

  2. Poldl :: forall a1 b1 (a :: Type -> Type) b . (a1 -> Maybe b1 -> a (Either b a1)) -> a a1 -> a b1 -> Poll a b

    data-effects Data.Effect.Concurrent.Parallel

    Performs polling on an action running in parallel in the form of a fold. First, the parallel execution of two actions begins. When the execution of the first action completes, polling on the second action is performed at that point, and the result is passed to the folding function. If the function returns Left, the folding terminates and it becomes the final result. If the second action is not yet complete, it is canceled. If the function returns Right, the folding continues, and the same process repeats.

  3. data Poll (a :: Type -> Type) b

    data-effects Data.Effect.Concurrent.Parallel

    An effect that realizes polling and cancellation of actions running in parallel.

  4. data PollLabel

    data-effects Data.Effect.Concurrent.Parallel

    No documentation available.

  5. module Data.Effect.Provider

    This module provides the Provider effect, like Effectful.Provider in the effectful package.

  6. Put :: forall s (a :: Type -> Type) . s -> State s a ()

    data-effects Data.Effect.State

    Overwrites the state value in the context.

  7. class FormOf e ~ 'Polynomial => PolyHFunctor (e :: Effect)

    data-effects-core Data.Effect

    A higher-order polynomial functor. Prevents resources from escaping the scope through unlift operations.

  8. Polynomial :: EffectForm

    data-effects-core Data.Effect

    No documentation available.

  9. Put :: forall s (a :: Type -> Type) . s -> State s a ()

    data-effects-core Data.Effect

    Overwrites the state value in the context.

  10. class PolyHFunctors (es :: [Effect])

    data-effects-core Data.Effect.OpenUnion

    The list es consists only of polynomial effects.

Page 683 of many | Previous | Next