Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Clojure

Idiom #37 Currying

Transform a function that takes multiple arguments into a function for which some of the arguments are preset.

(def rev-key #(update %2 %1 reverse))

(def rev-a (partial rev-key :a))
(def add5 (partial + 5))
//function
auto add(int a, int b) -> int {
	return a + b;
}

//curry with std::bind
using namespace std::placeholders;
auto add5 = std::bind(add, _1, 5);

//curry with lambda
auto add5 = [](int x) { return add(x, 5); };

//use
auto result = add5(1);
assert(result == 6);

You can use std::bind or a lambda to do so.

New implementation...
< >
Adrian