Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

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

  1. mapMaybeM :: Monad m => (a -> m (Maybe b)) -> [a] -> m [b]

    rio RIO.Prelude

    Monadic mapMaybe.

  2. mapMonotonic :: (a -> b) -> Set a -> Set b

    rio RIO.Set.Unchecked

    The mapMonotonic f s == map f s, but works only when f is strictly increasing. The precondition is not checked. Semi-formally, we have:

    and [x < y ==> f x < f y | x <- ls, y <- ls]
    ==> mapMonotonic f s == map f s
    where ls = toList s
    

  3. mapM_ :: (Monad m, Vector v a) => (a -> m b) -> v a -> m ()

    rio RIO.Vector

    No documentation available.

  4. mapMaybe :: (Vector v a, Vector v b) => (a -> Maybe b) -> v a -> v b

    rio RIO.Vector

    No documentation available.

  5. mapM_ :: Monad m => (a -> m b) -> Vector a -> m ()

    rio RIO.Vector.Boxed

    No documentation available.

  6. mapMaybe :: (a -> Maybe b) -> Vector a -> Vector b

    rio RIO.Vector.Boxed

    No documentation available.

  7. mapM_ :: (Monad m, Storable a) => (a -> m b) -> Vector a -> m ()

    rio RIO.Vector.Storable

    No documentation available.

  8. mapMaybe :: (Storable a, Storable b) => (a -> Maybe b) -> Vector a -> Vector b

    rio RIO.Vector.Storable

    No documentation available.

  9. mapM_ :: (Monad m, Unbox a) => (a -> m b) -> Vector a -> m ()

    rio RIO.Vector.Unboxed

    No documentation available.

  10. mapMaybe :: (Unbox a, Unbox b) => (a -> Maybe b) -> Vector a -> Vector b

    rio RIO.Vector.Unboxed

    No documentation available.

Page 26 of many | Previous | Next