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.
mapMaybeM :: Monad m => (a -> m (Maybe b)) -> [a] -> m [b]rio RIO.Prelude Monadic mapMaybe.
mapMonotonic :: (a -> b) -> Set a -> Set brio 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
mapM_ :: (Monad m, Vector v a) => (a -> m b) -> v a -> m ()rio RIO.Vector No documentation available.
mapMaybe :: (Vector v a, Vector v b) => (a -> Maybe b) -> v a -> v brio RIO.Vector No documentation available.
mapM_ :: Monad m => (a -> m b) -> Vector a -> m ()rio RIO.Vector.Boxed No documentation available.
mapMaybe :: (a -> Maybe b) -> Vector a -> Vector brio RIO.Vector.Boxed No documentation available.
mapM_ :: (Monad m, Storable a) => (a -> m b) -> Vector a -> m ()rio RIO.Vector.Storable No documentation available.
mapMaybe :: (Storable a, Storable b) => (a -> Maybe b) -> Vector a -> Vector brio RIO.Vector.Storable No documentation available.
mapM_ :: (Monad m, Unbox a) => (a -> m b) -> Vector a -> m ()rio RIO.Vector.Unboxed No documentation available.
mapMaybe :: (Unbox a, Unbox b) => (a -> Maybe b) -> Vector a -> Vector brio RIO.Vector.Unboxed No documentation available.