Logo

Programming-Idioms

History of Idiom 37 > diff from v22 to v23

Edit summary for version 23 by Dodopod:
New Scheme implementation by user [Dodopod]

Version 22

2017-03-20, 08:02:01

Version 23

2017-06-14, 15:17:03

Idiom #37 Currying

Technique of transforming a function that takes multiple arguments and returning a function for which some of the arguments are preset.

Idiom #37 Currying

Technique of transforming a function that takes multiple arguments and returning a function for which some of the arguments are preset.

Code
(define add5 (curry + 5))