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
tuple

Partial Call Graph (max 5 caller/called nodes):
%3 test_functional_api functional_api (test acs-tcl) f::uncurry f::uncurry test_functional_api->f::uncurry

Testcases:
functional_api
[ show source ]
Show another procedure: