Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

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

  1. mappend :: Monoid a => a -> a -> a

    numhask NumHask.Prelude

    An associative operation NOTE: This method is redundant and has the default implementation mappend = (<>) since base-4.11.0.0. Should it be implemented manually, since mappend is a synonym for (<>), it is expected that the two functions are defined the same way. In a future GHC release mappend will be removed from Monoid.

  2. mapWithKey :: forall (n :: Natural) a b . (Fin n -> a -> b) -> FinMap n a -> FinMap n b

    parameterized-utils Data.Parameterized.FinMap.Safe

    No documentation available.

  3. mapWithKey :: forall (n :: Natural) a b . (Fin n -> a -> b) -> FinMap n a -> FinMap n b

    parameterized-utils Data.Parameterized.FinMap.Unsafe

    No documentation available.

  4. 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.

  5. 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.

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

    parameterized-utils Data.Parameterized.Some

    Apply function to inner value.

  7. 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.

  8. 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.

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

    reflex Data.AppendMap

    Like mapMaybe but indicates whether the resulting container is empty

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

    reflex Data.Map.Misc

    Deprecated: Use mapEither instead

Page 204 of many | Previous | Next