|
Container System 0.1.0
High-performance C++20 type-safe container framework with SIMD-accelerated serialization
|
Zero-copy value view for efficient data access. More...
#include "core/value_types.h"#include <string>#include <string_view>#include <cstdlib>#include <optional>#include <type_traits>
Go to the source code of this file.
Classes | |
| class | kcenon::container::value_view |
| Zero-copy value view for efficient read access. More... | |
| struct | kcenon::container::value_index_entry |
| Value index entry for lazy parsing. More... | |
Namespaces | |
| namespace | kcenon |
| namespace | kcenon::container |
Zero-copy value view for efficient data access.
This header provides value_view class for zero-copy access to serialized data. Instead of copying values during deserialization, value_view points directly into the original buffer, providing significant performance improvements for large messages.
Usage:
Definition in file value_view.h.