Pixie
Loading...
Searching...
No Matches
pixie::Deserializable Concept Reference

Type restorable exactly from a reader and the listed context types. More...

#include <serialization.h>

Concept definition

template<class T, class... Context>
concept pixie::Deserializable = requires(BinaryReader& reader, Context&&... context) {
{
T::deserialize(reader, std::forward<Context>(context)...)
} -> std::same_as<T>;
}
Bounds-checked reader for canonical little-endian binary data.
Definition serialization.h:526
Type restorable exactly from a reader and the listed context types.
Definition serialization.h:758

Detailed Description

Type restorable exactly from a reader and the listed context types.