Hoogle Search

Within LTS Haskell 24.26 (ghc-9.10.3)

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

  1. mapMaybeWithKey :: (forall (tp :: v) . () => k tp -> f tp -> Maybe (g tp)) -> MapF k f -> MapF k g

    parameterized-utils Data.Parameterized.Map

    Map keys and elements and collect Just results.

  2. mapWithKey :: (forall (tp :: v) . () => ktp tp -> f tp -> g tp) -> MapF ktp f -> MapF ktp g

    parameterized-utils Data.Parameterized.Map

    Apply function to all elements in map.

  3. mapSome :: (forall (tp :: k) . () => f tp -> g tp) -> Some f -> Some g

    parameterized-utils Data.Parameterized.Some

    Apply function to inner value.

  4. mapAt :: forall (i :: Natural) (w :: Natural) (n :: Natural) a . ((i + w) <= n, 1 <= w) => NatRepr i -> NatRepr w -> (Vector w a -> Vector w a) -> Vector n a -> Vector n a

    parameterized-utils Data.Parameterized.Vector

    Scope a function to a sub-section of the given vector.

  5. mapAtM :: forall m (i :: Natural) (w :: Natural) (n :: Natural) a . (Monad m, (i + w) <= n, 1 <= w) => NatRepr i -> NatRepr w -> (Vector w a -> m (Vector w a)) -> Vector n a -> m (Vector n a)

    parameterized-utils Data.Parameterized.Vector

    Scope a monadic function to a sub-section of the given vector.

  6. mapMaybeNoNull :: (a -> Maybe b) -> MonoidalMap token a -> Maybe (MonoidalMap token b)

    reflex Data.AppendMap

    Like mapMaybe but indicates whether the resulting container is empty

  7. mapPartitionEithers :: Map k (Either a b) -> (Map k a, Map k b)

    reflex Data.Map.Misc

    Deprecated: Use mapEither instead

  8. mapMapWithAdjustWithMove :: (Adjustable t m, Ord k) => (k -> v -> m v') -> Map k v -> Event t (PatchMapWithMove k v) -> m (Map k v', Event t (PatchMapWithMove k v'))

    reflex Reflex.Adjustable.Class

    Traverses a Map, running the provided Adjustable action. The provided Event of patches to the Map can add, remove, update, move, or swap values.

  9. mapAccum :: (Accumulator t f, MonadHold t m, MonadFix m) => (a -> b -> (a, c)) -> a -> Event t b -> m (f a, Event t c)

    reflex Reflex.Class

    No documentation available.

  10. mapAccumM :: (Accumulator t f, MonadHold t m, MonadFix m) => (a -> b -> PushM t (a, c)) -> a -> Event t b -> m (f a, Event t c)

    reflex Reflex.Class

    No documentation available.

Page 164 of many | Previous | Next