var of type Type.ARRAY with no elements.var array_() @property @safeAlias for emptyArray. Returns an empty array value (Type.ARRAY).
This is an alternative name that may feel more natural when creating a new array that will be populated with data.
var of type Type.ARRAY with no elements.var items = var.array_;
items ~= "first";
items ~= "second";
assert(items.length == 2);