|
|
|
|
|
by mauvia
871 days ago
|
|
I don't know if the author is looking at this comment section but small issue: > Array: Implements a dynamic array similar to std::array in C++. should read "static array". std::array requires you to state the size. C++ std::arrays are pretty much just uniformly typed tuple structures, not dynamic arrays. In fact you can use them directly on the stack with no memory allocations whatsoever. |
|