<div dir="auto">We currently offer liftA, liftM, liftM2, and ap to implement Functor and Applicative methods in terms of Applicative and Monad ones. But there are a couple other functions in that general vein that are missing. I propose that we should add at least replaceA, and perhaps also beforeM.<div dir="auto"><br></div><div dir="auto">-- (<$) = replaceA</div><div dir="auto">-- This may be better than the default if there is</div><div dir="auto">-- an optimized definition of *> (which may be</div><div dir="auto">-- based on an optimized >>).</div><div dir="auto">replaceA :: Applicative f => a -> f x -> f a</div><div dir="auto">replaceA a fa = fa *> pure a</div><div dir="auto"><br></div><div dir="auto">-- (<*) = beforeM</div><div dir="auto">-- This may be better than the default if there is</div><div dir="auto">-- an optimized definition of <$, or if <$ is defined asĀ </div><div dir="auto">-- replaceA and *> is optimized.</div><div dir="auto">beforeM :: Monad f => f a -> f x -> f a</div><div dir="auto">beforeM fa fx = fa >>= \a -> a <$ fx</div><div dir="auto"><br></div><div dir="auto">Why a <$ fx and not fx >> pure a? Because <$ could be implemented specially, and is unlikely to be implemented by hand using <* if there isn't a custom <*.</div></div>