Curry function
Curries a function.
- Use
functools.partial()
to return a new partial object which behaves likefn
with the given arguments,args
, partially applied.
Curries a function.
functools.partial()
to return a new partial object which behaves like fn
with the given arguments, args
, partially applied.