MT Core (C++)
Core library for replacing C++ standard in project usage
Loading...
Searching...
No Matches
mtcore::Ostreamable Concept Reference

The Ostreamable trait for types Something that implements this trait allows ostream operations. More...

#include <traits.hpp>

Concept definition

template<typename T>
concept mtcore::Ostreamable = requires(const T &c, std::ostream &os) {
{ os << c };
}
The Ostreamable trait for types Something that implements this trait allows ostream operations.

Detailed Description

The Ostreamable trait for types Something that implements this trait allows ostream operations.

Definition at line 56 of file core/mtcore/traits.hpp.