https://github.com/coderjo-pro/cpp-array2d
A C++ Library about 2D array template classes, grid and mathematical operations of matrices.
https://github.com/coderjo-pro/cpp-array2d
2d-arrays cplusplus cpp cpp-library cpp17 grid grid-system matrices matrix matrix-calculations matrix-library
Last synced: 8 months ago
JSON representation
A C++ Library about 2D array template classes, grid and mathematical operations of matrices.
- Host: GitHub
- URL: https://github.com/coderjo-pro/cpp-array2d
- Owner: CoderJo-Pro
- License: mit
- Created: 2024-05-14T07:30:18.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-05-01T02:50:31.000Z (about 1 year ago)
- Last Synced: 2025-05-01T03:33:44.702Z (about 1 year ago)
- Topics: 2d-arrays, cplusplus, cpp, cpp-library, cpp17, grid, grid-system, matrices, matrix, matrix-calculations, matrix-library
- Language: C++
- Homepage:
- Size: 47.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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:
```c++
template
class grid;
```