Is the data in std::array<std::array<T,N>, M> guaranteed to be contiguous? For example:
#include <array>
#include <cassert>
int main()
{
    enum {M=4, N=7};
    typedef std::array<char,N> Row;
    typedef std::array<Row, M> Matrix;
    Matrix a;
    a[1][0] = 42;
    const char* data = a[0].data();
    /* 8th element of 1D data array should be the same as
       1st element of second row. */
    assert(data[7] == 42);
}
Is the assert guaranteed to succeed? Or, to put it another way, can I rely on there being no padding at the end of a Row?
EDIT: Just to be clear, for this example, I want the data of the entire matrix to be contiguous.
 
     
    