Hi Alexander,
I found this tool online[1], that converts your function to a point free style.
myAny'' f = foldr (\a b -> f a || b) False
is transformed to
myAny'' = flip foldr False . ((||) .)
Again as Bob mentions, the point free style comes at a cost of unreadability and hence unmaintainable.
Cheers!
Apoorv
The better question is why would you want to? If you could even manage, the result would be practically incomprehensible.
_______________________________________________
Beginners mailing list
Beginners@haskell.orghttp://mail.haskell.org/cgi-bin/mailman/listinfo/beginners