Logo

Programming-Idioms

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

Idiom #37 Currying

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

import std.functional;
int add(int n1, int n2)
{
    return n1 + n2;
}

alias add5 = curry!(add, 5);
(def add5 (partial + 5))

New implementation...
< >
Adrian