ComProperty.callWithNamedArgs

Call with named arguments

Note that all positional arguments are always followed by all named arguments.

So to call: Com.f(10, 20, A: 30, B: 40), invoke this function as follows:

Com.f().callWithNamedArgs(["A", "B"], 10, 20, 30, 40);

Argument names are case-insensitive

struct ComProperty
ComResult
callWithNamedArgs
(
Args...
)
(
string[] argNames
,
Args args
)

Meta