SetIndex sets the i'th element of an array.
(i int, value any)
| 45 | |
| 46 | // SetIndex sets the i'th element of an array. |
| 47 | func (o *Object) SetIndex(i int, value any) { o.object.SetIndex(i, value) } |
| 48 | |
| 49 | // Call calls the object's method with the given name. |
| 50 | func (o *Object) Call(name string, args ...any) *Object { return o.object.Call(name, args...) } |
no outgoing calls