|
Container System 0.1.0
High-performance C++20 type-safe container framework with SIMD-accelerated serialization
|
#include "container.h"#include "utilities/core/formatter.h"#include "utilities/core/convert_string.h"#include "value_types.h"#include "internal/value.h"#include "internal/pool_allocator.h"#include "serializers/serializer_factory.h"#include "serializers/binary_serializer.h"#include "serializers/json_serializer.h"#include "serializers/xml_serializer.h"#include "serializers/msgpack_serializer.h"#include <fcntl.h>#include <wchar.h>#include <regex>#include <sstream>#include <fstream>#include <unordered_set>
Go to the source code of this file.
Namespaces | |
| namespace | kcenon |
| namespace | kcenon::container |
Functions | |
| std::ostream & | kcenon::container::operator<< (std::ostream &out, value_container &other) |
| std::ostream & | kcenon::container::operator<< (std::ostream &out, std::shared_ptr< value_container > other) |
| std::string & | kcenon::container::operator<< (std::string &out, value_container &other) |
| std::string & | kcenon::container::operator<< (std::string &out, std::shared_ptr< value_container > other) |
Variables | |
| constexpr int | kcenon::container::TARGET_ID = 1 |
| constexpr int | kcenon::container::TARGET_SUB_ID = 2 |
| constexpr int | kcenon::container::SOURCE_ID = 3 |
| constexpr int | kcenon::container::SOURCE_SUB_ID = 4 |
| constexpr int | kcenon::container::MESSAGE_TYPE = 5 |
| constexpr int | kcenon::container::MESSAGE_VERSION = 6 |