sS mapMethodLike formatFunctionCall(S fname, O... args) { ret fname + "(" + joinWithComma(allToString(args)) + ")"; } sS formatFunctionCall(S fname, L args) { ret formatFunctionCall(fname, toObjectArray(args)); }