Hoogle Search

Within LTS Haskell 24.45 (ghc-9.10.3)

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

  1. mapUNE :: (u -> u') -> DUALTreeNE d u a l -> DUALTreeNE d u' a l

    dual-tree Data.Tree.DUAL.Internal

    Map a function (which must be a monoid homomorphism, and commute with the action of d) over all the u annotations in a non-empty DUAL-tree.

  2. mapUU :: (u -> u') -> DUALTreeU d u a l -> DUALTreeU d u' a l

    dual-tree Data.Tree.DUAL.Internal

    Map a function (which must be a monoid homomorphism, and commute with the action of d) over all the u annotations in a non-empty DUAL-tree paired with its cached u value.

  3. mapConcurrently :: forall f (es :: [Effect]) a b . (HasCallStack, Traversable f, Concurrent :> es) => (a -> Eff es b) -> f a -> Eff es (f b)

    effectful Effectful.Concurrent.Async

    Lifted mapConcurrently.

  4. mapConcurrently_ :: forall f (es :: [Effect]) a b . (HasCallStack, Foldable f, Concurrent :> es) => (a -> Eff es b) -> f a -> Eff es ()

    effectful Effectful.Concurrent.Async

    Lifted mapConcurrently_.

  5. mapM :: (Vector v a, Vector v b, Applicative f) => (a -> f b) -> v a -> f (v b)

    fixed-vector Data.Vector.Fixed

    Effectful map over vector.

  6. mapM_ :: (Vector v a, Applicative f) => (a -> f b) -> v a -> f ()

    fixed-vector Data.Vector.Fixed

    Apply monadic action to each element of vector and ignore result.

  7. mapM :: forall (n :: PeanoNum) f a b . (ArityPeano n, Applicative f) => (a -> f b) -> ContVec n a -> f (ContVec n b)

    fixed-vector Data.Vector.Fixed.Cont

    Effectful map over vector.

  8. mapM_ :: forall (n :: PeanoNum) f a b . (ArityPeano n, Applicative f) => (a -> f b) -> ContVec n a -> f ()

    fixed-vector Data.Vector.Fixed.Cont

    Apply monadic action to each element of vector and ignore result.

  9. mapG :: (Vector v a, Vector w b, Dim v ~ Dim w) => (a -> b) -> v a -> w b

    fixed-vector Data.Vector.Fixed.Generic

    Map over vector

  10. mapMG :: (Vector v a, Vector w b, Dim w ~ Dim v, Monad m) => (a -> m b) -> v a -> m (w b)

    fixed-vector Data.Vector.Fixed.Generic

    Monadic map over vector.

Page 221 of many | Previous | Next