Hoogle Search
Within LTS Haskell 24.26 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
mapMaybe :: (a -> Maybe b) -> Vector a -> Vector brio RIO.Vector.Boxed No documentation available.
mapM :: (Monad m, Storable a, Storable b) => (a -> m b) -> Vector a -> m (Vector b)rio RIO.Vector.Storable 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, Unbox b) => (a -> m b) -> Vector a -> m (Vector b)rio RIO.Vector.Unboxed 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.
mapWriter :: ((a, w) -> (b, w')) -> Writer w a -> Writer w' brio RIO.Writer Map both the return value and output of a computation using the given function.
mapWriterT :: (m (a, w) -> n (b, w')) -> WriterT w m a -> WriterT w' n brio RIO.Writer Map both the return value and output of a computation using the given function.
runWriterT (mapWriterT f m) = f (runWriterT m)
mapExceptT :: (m (Either e a) -> n (Either e' b)) -> ExceptT e m a -> ExceptT e' n berrors Control.Error Map the unwrapped computation using the given function.
runExceptT (mapExceptT f m) = f (runExceptT m)