
10 Oct
2013
10 Oct
'13
6:45 p.m.
On Thu, Oct 10, 2013 at 1:12 PM, Wvv
Is it hard to read?
xs # map $ (+ 3) . snd
Or do you prefer next?
map ((+3).snd) xs
I've resigned myself to the fact that this will never happen, but if ($) had a sensible left fixity, one could write: map $ (+3).snd $ xs And yes, I prefer your second line to your first. -- Dan