Implemented simple IO for getting keyboard input.

This commit is contained in:
2024-01-20 01:13:29 +01:00
parent d711938821
commit f4bad14fcd
9 changed files with 584 additions and 306 deletions

View File

@@ -25,7 +25,7 @@ public:
using iterator = pointer;
using const_iterator = const_pointer;
T _elements[N];
T _elements[N] = {};
constexpr reference operator[](size_type pos) noexcept
{