Easypt

readOperator

..Root.Array.readOperator

Returns iterator pointing to i-th element. Read operator ([]) is shorthand for this function.

Child of:

Array

Signatures:

NativeCallable, Callable

Example:

auto arr.=(Array());
arr.pushBack("abc", "def");
log(arr[1].get());