Method Call
Call(Value, Value[])
Creates a call function
Declaration
public CallInstruction Call(Value func, params Value[] args)
Parameters
public CallInstruction Call(Value func, params Value[] args)
Value | func | Function to call |
Value[] | args | Arguments to pass to the function |
Returns
CallInstruction | CallInstruction |
Call(Value, IReadOnlyList<Value>)
Creates a call function
Declaration
public CallInstruction Call(Value func, IReadOnlyList<Value> args)
Parameters
public CallInstruction Call(Value func, IReadOnlyList<Value> args)
Value | func | Function to call |
IReadOnlyList<Value> | args | Arguments to pass to the function |
Returns
CallInstruction | CallInstruction |