I found defining the following
(%) = flip fmap
I can write code like this:
readFile \"/etc/passwd\" % lines % filter (not
Your operator (%) is exactly the operator (<&>) from the lens package.
(%)
It can be imported with:
import Control.Lens.Operators ((<&>))