Does someone know the way to define constant-sized vector?
For example, instead of defining
std::vector
it will be
Use std::array c++11
For better readability you can make typedef:
typedef std::array MyIntArray;