Logo

Programming-Idioms

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

Idiom #37 Currying

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

type PayFactory func(Company, *Employee, *Employee) Payroll

type CustomPayFactory func(*Employee) Payroll

func CurryPayFactory(pf PayFactory,company Company, boss *Employee) CustomPayFactory {
	return func(e *Employee) Payroll {
		return pf(company, boss, e)
	}
}

The currying function is not generic, it must be written for each type of currying needed.
(def add5 (partial + 5))

New implementation...
< >
Adrian