Anyone know a common name for a function that lifts only one side (only the codomain) of another function into a functor/monad/effect?
Something like
Monad m => (a -> b) -> a -> m b
Feels like this transformation comes up often when using asynchronous frameworks. It "lifts" a synchronous function into an `async` function.
Perhaps it doesn't need a name, since it's maybe just the composition
liftM f . return
