ContainsStream

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(); };