Return the number of elements in the array..
the length of the array.
Complexity: O(1).
auto a = Array!int(1, 2, 3); assert(a.length == 3); assert(a[$ - 1] == 3);
See Implementation
Return the number of elements in the array..