[#CharNotInt8] = CharNotInt8 :mrdocs: Matches char only when it is a distinct type from int8_t, used to forbid serializing char. == Synopsis Declared in `<serialize.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class T> concept CharNotInt8 = std::same_as<T, char> && !std::same_as<T, int8_t>; ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#