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. mapFst :: Functor f => (t -> t2) -> f (t, t1) -> f (t2, t1)

    regex-tdfa Text.Regex.TDFA.Common

    No documentation available.

  2. mapSnd :: Functor f => (t1 -> t2) -> f (t, t1) -> f (t, t2)

    regex-tdfa Text.Regex.TDFA.Common

    No documentation available.

  3. mapCArrayWithLength :: (Storable a, Integral b) => b -> (a -> IO c) -> Ptr a -> IO ()

    haskell-gi-base Data.GI.Base.BasicConversions

    No documentation available.

  4. mapGArray :: Storable a => (a -> IO b) -> Ptr (GArray a) -> IO ()

    haskell-gi-base Data.GI.Base.BasicConversions

    No documentation available.

  5. mapGList :: (Ptr a -> IO b) -> Ptr (GList (Ptr a)) -> IO ()

    haskell-gi-base Data.GI.Base.BasicConversions

    No documentation available.

  6. mapGSList :: (Ptr a -> IO b) -> Ptr (GSList (Ptr a)) -> IO ()

    haskell-gi-base Data.GI.Base.BasicConversions

    No documentation available.

  7. mapPtrArray :: (Ptr a -> IO b) -> Ptr (GPtrArray (Ptr a)) -> IO ()

    haskell-gi-base Data.GI.Base.BasicConversions

    No documentation available.

  8. mapZeroTerminatedCArray :: (Ptr a -> IO b) -> Ptr (Ptr a) -> IO ()

    haskell-gi-base Data.GI.Base.BasicConversions

    No documentation available.

  9. mapGValueArrayWithLength :: Integral a => a -> (Ptr GValue -> IO c) -> Ptr GValue -> IO ()

    haskell-gi-base Data.GI.Base.GValue

    Map over the GValues inside a C array.

  10. mapM :: (Traversable t, Monad m) => (a -> m b) -> t a -> m (t b)

    haskell-gi-base Data.GI.Base.ShortPrelude

    Map each element of a structure to a monadic action, evaluate these actions from left to right, and collect the results. For a version that ignores the results see mapM_.

    Examples

    mapM is literally a traverse with a type signature restricted to Monad. Its implementation may be more efficient due to additional power of Monad.

Page 114 of many | Previous | Next