Easypt

Array

..Root.Array

Constructs new Array. Array is a sequence container that encapsulates dynamic size arrays.

  1. Constructs an empty array.

  2. Constructs a array filled with n consecutive copies of empty Object.

  3. Constructs a array filled with n consecutive copies of c.

Array type signatures:

Object, Container, Iterable, Array

Child of:

Root

Signatures:

NativeCallable, Callable, Class

Members:

Example:

auto arr.=(Array());
arr.pushBack(1, 7, 3.14, "abc", "def");
for (auto it.=(arr.begin()).!=, arr.end(), it.++, {
    log(it.get());
});