Logo

Programming-Idioms

  • Fortran
  • Go
  • Perl

Idiom #37 Currying

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

sub curry {
   my ($func, $fixed_arg) = @_;
   return sub {
      $func->($fixed_arg, @_);
   }
}
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