makeUnifiedCall
Syntax
makeUnifiedCall(func, args)
Arguments
func is a function.
args is a tuple. Each element is a parameter of func.
Details
Generate metacode for function call. Use function eval to execute the metacode. The difference between
makeUnifiedCall and the template function unifiedCall is that
makeUnifiedCall doesn't execute the metacode.
Examples
mc = makeUnifiedCall(matrix, (1 2 3, 4 5 6));
mc;
// output
< matrix([1,2,3], [4,5,6]) >
mc.eval();
| col1 | col2 |
|---|---|
| 1 | 4 |
| 2 | 5 |
| 3 | 6 |
