`Control.Monad` offers `<$!>`. By analogy, I believe this package should offer ``` haskell (<$!!>) :: (Monad m, NFData b) => (a -> b) -> m a -> m b f <$!!> m = m >>= \x -> return $!! f x ```