ComPPare 1.0.0
Loading...
Searching...
No Matches
comppare::internal::concepts::Streamable Concept Reference

Concept for a type that can be streamed to an output stream. More...

#include <concepts.hpp>

Concept definition

template<typename T>
requires(std::ostream &os, T v) { { os << v } -> std::same_as<std::ostream&>; }
Concept for a type that can be streamed to an output stream.
Definition concepts.hpp:52

Detailed Description

Concept for a type that can be streamed to an output stream.

Template Parameters
T