--- title: "multi_vector" --- A fixed capacity multi-dimensional vector. For C++11 or greater only. ```cpp etl::multi_vector ``` ## Description The `etl::multi_vector` class is defined as a recursive variadic template. It defines a multi-dimensional array class based on nested `etl::vector` definitions. ## Example ```cpp etl::multi_vector ``` is equivalent to ```cpp etl::vector, 3>, 2> ``` Each dimension of an `etl::multi_vector` supports all of the members of an `etl::vector`.