mutable
A Database System for Research and Fast Prototyping
Loading...
Searching...
No Matches
m::streamable Concept Reference

Check whether. More...

#include <concepts.hpp>

Concept definition

template<typename Stream, typename T>
concept m::streamable = requires (Stream &out, const T &t) {
{ out << t } -> std::same_as<Stream&>;
}
Check whether.
Definition: concepts.hpp:208
T(x)

Detailed Description

Check whether.

Template Parameters
Tis streamable via insertion operator of
Stream.

Definition at line 208 of file concepts.hpp.