Length returns the object's "length" property, converted to int.
()
| 39 | |
| 40 | // Length returns the object's "length" property, converted to int. |
| 41 | func (o *Object) Length() int { return o.object.Length() } |
| 42 | |
| 43 | // Index returns the i'th element of an array. |
| 44 | func (o *Object) Index(i int) *Object { return o.object.Index(i) } |
no outgoing calls