Hoogle Search

Within LTS Haskell 24.28 (ghc-9.10.3)

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

  1. mapTCMT :: (forall a1 . () => m a1 -> n a1) -> TCMT m a -> TCMT n a

    Agda Agda.TypeChecking.Monad.Base

    No documentation available.

  2. mapClosure :: (MonadTCEnv m, ReadTCState m) => (a -> m b) -> Closure a -> m (Closure b)

    Agda Agda.TypeChecking.Monad.Closure

    No documentation available.

  3. mapAwakeConstraints :: (Constraints -> Constraints) -> TCState -> TCState

    Agda Agda.TypeChecking.Monad.Constraints

    No documentation available.

  4. mapSleepingConstraints :: (Constraints -> Constraints) -> TCState -> TCState

    Agda Agda.TypeChecking.Monad.Constraints

    No documentation available.

  5. mapAbstraction :: (Subst a, Subst b, MonadAddContext m) => Dom Type -> (a -> m b) -> Abs a -> m (Abs b)

    Agda Agda.TypeChecking.Monad.Context

    Map a monadic function on the thing under the abstraction, adding the abstracted variable to the context.

  6. mapAbstraction_ :: (Subst a, Subst b, MonadAddContext m) => (a -> m b) -> Abs a -> m (Abs b)

    Agda Agda.TypeChecking.Monad.Context

    No documentation available.

  7. mapLHSCores :: (LHSCore -> LHSCore) -> RHS -> RHS

    Agda Agda.TypeChecking.Rules.Def

    Modify all the LHSCore of the given RHS. (Used to insert patterns for rewrite or the inspect idiom)

  8. mapKeysMonotonic :: (k -> k') -> AssocList k v -> AssocList k' v

    Agda Agda.Utils.AssocList

    O(n). Named in analogy to mapKeysMonotonic. To preserve the invariant, it is sufficient that the key transformation is injective (rather than monotonic).

  9. mapWithKey :: (k -> v -> v) -> AssocList k v -> AssocList k v

    Agda Agda.Utils.AssocList

    O(n). Map over an association list, preserving the order.

  10. mapWithKeyM :: Applicative m => (k -> v -> m v) -> AssocList k v -> m (AssocList k v)

    Agda Agda.Utils.AssocList

    O(n). If called with a effect-producing function, violation of the invariant could matter here (duplicating effects).

Page 272 of many | Previous | Next