This commit is contained in:
Martin Slachta
2026-07-18 14:31:15 +02:00
commit a04f0dc262
3343 changed files with 1140208 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#include "TestGenerators.hpp"
std::vector<std::byte> generate_sequence(const size_t size) {
assert(size < UINT8_MAX);
std::vector<std::byte> result(size);
for(size_t i = 0; i < size; i++) {
result[i] = (std::byte)(i + 1);
}
return result;
}