Sequoia
Loading...
Searching...
No Matches
sequoia::serializable_to Concept Reference

A concept which is realized by a T const& which may be serialized to a Stream&. More...

#include <Concepts.hpp>

Concept definition

template<class T, class Stream>
concept sequoia::serializable_to = requires(std::remove_reference_t<Stream>& stream, const std::remove_reference_t<T>& t) {
typename Stream::char_type;
stream << t;
}
A concept which is realized by a T const& which may be serialized to a Stream&.
Definition: Concepts.hpp:61

Detailed Description

A concept which is realized by a T const& which may be serialized to a Stream&.