base-compat-0.7.0: A compatibility layer for base

Safe HaskellSafe-Inferred
LanguageHaskell98

Control.Monad.Compat

Synopsis

Documentation

void :: Functor f => f a -> f ()

void value discards or ignores the result of evaluation, such as the return value of an IO action.

(<$!>) :: Monad m => (a -> b) -> m a -> m b infixl 4 Source

Strict version of <$>.

Since: 4.8.0.0