Assigns a static array.
Static array size.
Values to initialize the array with.
$(D_KEYWORD this).
auto v1 = Array!int([5, 15, 8]); Array!int v2; v2 = [5, 15, 8]; assert(v1 == v2);
See Implementation
Assigns a static array.