* Get index-th element of the array * @param index the array index. * @returns The element.
(index: number)
| 762 | * @returns The element. |
| 763 | */ |
| 764 | get(index: number): TVMObjectBase { |
| 765 | return this.ctx.arrayGetItem(this, new Scalar(index, "int32")) as TVMObjectBase; |
| 766 | } |
| 767 | } |
| 768 | |
| 769 | export enum VMAllocatorKind { |
no outgoing calls
no test coverage detected