fixed

Make static array literal

T[N]
fixed
(
T
size_t N
)
(
T[N] a
)

Examples

auto a = [[1, 2].fixed];
assert(is(typeof(a) == int[2][]));

Meta