Point-free in Haskell
Posted
by wwrob
on Stack Overflow
See other posts from Stack Overflow
or by wwrob
Published on 2010-03-17T17:25:48Z
Indexed on
2010/03/17
19:01 UTC
Read the original article
Hit count: 189
I have this code that I want to make point-free;
(\k t -> chr $ a + flip mod 26 (ord k + ord t -2*a))
How do I do that?
Also are there some general rules for point free style other than "think about this amd come up with something"?
© Stack Overflow or respective owner