Array
..Root.Array
Constructs new Array
. Array
is a sequence container that encapsulates dynamic size arrays.
Constructs an empty array.
Constructs a array filled with n consecutive copies of empty Object
.
Constructs a array filled with n consecutive copies of c.
Parameters:
Int
nInt
n, any cReturn value: new Array
Array
type signatures:Object
, Container
, Iterable
, Array
NativeCallable
, Callable
, Class
auto arr.=(Array());
arr.pushBack(1, 7, 3.14, "abc", "def");
for (auto it.=(arr.begin()).!=, arr.end(), it.++, {
log(it.get());
});