
10 Feb
2005
10 Feb
'05
3:19 p.m.
On 10 Feb 2005, Peter Simons wrote:
Now compare that to the following function, which does the some thing but without point-free notation:
incrEach' :: Integer -> [Integer] -> [Integer] incrEach' i is = is >>= \i' -> return (i'+i)
point-free again is >>= return . (i+) :-]