A C++ library for grid template classes, with the C++17 standard.
This is a library for C++ 2 dimensional array templates, they all conformed the STL container.
Since 2D array is a common use case, and I myself also need this type of API, so I decided to create this library. Welcome you all to improve this as you like. Cheers!
In this library, A grid template class is included:
template <typename T, typename measure_t>
class grid;