Check if type contains a stream by seeing if has a GetStream() method.
Synopsis
Declared in <serialize.h>
template<typename T>
concept ContainsStream = requires(T t) { t.GetStream(); };
Created with MrDocs
Check if type contains a stream by seeing if has a GetStream() method.
Declared in <serialize.h>
template<typename T>
concept ContainsStream = requires(T t) { t.GetStream(); };
Created with MrDocs