pub type CArray<T, const N: usize> = DenseArray<T, Global, N, { Order::RowMajor }>;
Dense multidimensional array with row-major element order and using global allocator.