xte::fixed_array<T, n>::/* _data */

Defined in header <xte/data/fixed_array.hpp>


Definition

/* [:^^T[n]:] _data; */
The underlying array. Not intended to be named, and only used for initialization. Only exists when n > 0.



Example

std::println("{}", xte::fixed_array<int, 3> { { 1, 2, 3 } });
Output:
[1, 2, 3]
[View in Compiler Explorer]