| 21 | template <typename T, fl::size INLINED_SIZE> using InlinedVector = VectorN<T, INLINED_SIZE>; |
| 22 | |
| 23 | template <typename T, fl::size N> class array; |
| 24 | |
| 25 | // Special value to indicate dynamic extent (runtime-determined size) |
| 26 | constexpr fl::size dynamic_extent = fl::size(-1); |
no outgoing calls