concrete functor and monad transformers

#49Maybe to MaybeT

Can the following function be added to Control.Monad.Trans.Maybe?

liftMaybe :: Applicative m => Maybe a -> MaybeT m a

When using MaybeT, it's quite common to want to lift Maybe a to MaybeT m a. This is the equivalent of except, state, etc. for other transformers.