Logo

Programming-Idioms

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

Idiom #37 Currying

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

from functools import partial
def add(a, b):
	return a+b

add_to_two = partial(add, 2)
(def add5 (partial + 5))

New implementation...
< >
Adrian