#include <constructVector.hpp>
Public Types | |
using | T = T_T |
See ConstructVectorImpl. | |
using | V |
See ConstructVectorImpl. | |
Static Public Member Functions | |
static V | construct (size_t const size) |
Default implementation assumes that there is a constructor that takes the vector size as its single argument. | |
static std::array< T, n > | construct (size_t const size) |
Only asserts the argument for the correct size. | |
Static Public Attributes | |
static size_t constexpr | n = T_n |
See ConstructVectorImpl. | |
Specialization for std::array.
T_T | Any type. |
T_n | Array size. |