The <&> operator is rather popular:

(<&>) :: Functor f => f a -> (a -> b) -> f b
(<&>) = flip fmap

Now that we have (&) in Data.Function, I think we should have (<&>) in Data.Functor.