Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 508 Bytes

File metadata and controls

20 lines (12 loc) · 508 Bytes

Cpp-Array2D

A C++ library for grid template classes, with the C++17 standard.

Support

This is a library for C++ 2 dimensional array templates, they all conformed the STL container.

About

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!

Content Overview

In this library, A grid template class is included:

template <typename T, typename measure_t>
class grid;