Invocable.invoke

Ditto, but arguments are taken as variadic arguments. A template argument may be specified to covert the result of the call.

  1. Variant invoke(Variant instance, Variant[] arguments)
  2. T invoke(O instance, TList arguments)
    interface Invocable
    final const
    T
    invoke
    (
    T = Variant
    O
    TList...
    )

Parameters

T

The type to convert the result into.

instance O

The object instance to invoke the method as.

arguments TList

The arguments to be passed along to the method.

Return Value

Type: T

The result of the invocation.

Meta