arraySize

pure nothrow @safe @nogc
size_t
arraySize
(
T
)
(
T[] array
)

Examples

immutable int[] arr = [4, 5, -6];
assert (arr.arraySize == 24, "Array size of arr must be 8 * 3 = 24!");

Meta