Easypt

erase

..Root.Array.erase

Erases the sequence of elements in the range [first, last).

Child of:

Array

Signatures:

NativeCallable, Callable

Example:

auto arr.=(Array());
arr.pushBack(1, 7, 3.14, "abc", "def");

arr.erase(arr.begin(), arr.begin().+(2));
log(arr);