|
Container System 0.1.0
High-performance C++20 type-safe container framework with SIMD-accelerated serialization
|
C++20 coroutine-based async serialization, file I/O, and streaming. More...
#include <iostream>#include <memory>#include <vector>#include <chrono>#include <thread>#include <iomanip>#include <filesystem>#include "container.h"
Go to the source code of this file.
Functions | |
| void | print_section (const std::string &title) |
| Helper to print section headers. | |
| void | print_success (const std::string &message) |
| Helper to print success message. | |
| void | print_error (const std::string &message) |
| Helper to print error message. | |
| int | main () |
C++20 coroutine-based async serialization, file I/O, and streaming.
Definition in file async_coroutine_example.cpp.
| int main | ( | ) |
Definition at line 336 of file async_coroutine_example.cpp.
| void print_error | ( | const std::string & | message | ) |
Helper to print error message.
Definition at line 62 of file async_coroutine_example.cpp.
| void print_section | ( | const std::string & | title | ) |
Helper to print section headers.
Definition at line 46 of file async_coroutine_example.cpp.
| void print_success | ( | const std::string & | message | ) |
Helper to print success message.
Definition at line 55 of file async_coroutine_example.cpp.