Is it possible to apply eta reduction in below case?
let normalise = filter (\\x -> Data.Char.isLetter x || Data.Char.isSpace x )
I was
import Control.Applicative let normalise = filter ((||) <$> Data.Char.isLetter <*> Data.Char.isSpace)