CoriEngine
Loading...
Searching...
No Matches
Cori::Utility::IsStreamable Concept Reference

Checks if T can be streamed. More...

#include <TemplateUtils.hpp>

Concept definition

template<typename T>
concept Cori::Utility::IsStreamable = requires(std::ostream& os, const T& val) {
{ os << val } -> std::same_as<std::ostream&>;
}
Checks if T can be streamed.

Detailed Description

Checks if T can be streamed.

Definition at line 29 of file TemplateUtils.hpp.