Matrix.data

Holds the matrix $( RED column - major ) in memory. +//// Each Column is Vector of length row

struct Matrix(type, int numCols, int numRows)
pure nothrow @nogc @safe
vectorType[cols] data;

Meta