f::uncurry (public)
f::uncurry f tuple
Defined in packages/acs-tcl/tcl/ad-functional-procs.tcl
Converts a function that takes a series of single arguments into a function that takes one tuple as an argument. Example: f::min 3 5 = 3 f::min {3 5} = error (because min expects two arguments) f::uncurry min {3 5} = 3
- Parameters:
- f (required)
- tuple (required)
- Partial Call Graph (max 5 caller/called nodes):
- Testcases:
- functional_api