[plt-scheme] Why do layman programmers care about Currying?

From: Noel Welsh (noelwelsh at gmail.com)
Date: Fri Jan 2 11:09:33 EST 2009

2009/1/2 Grant Rettke <grettke at acm.org>:
> When you do apply the latter, what are the idioms or patterns that you
> most often encounter?

I very rarely define functions in curried form, but I use cut (srfi
26) a lot to make ad-hoc "curried" forms of functions.  For example, I
use cut here to check that two vectors are within e of each other:

(check (cut vector-= <> <> e) v1 v2)

HTH,
Noel


Posted on the users mailing list.