Steppable 0.0.1
A CAS project written from scratch in C++
Loading...
Searching...
No Matches
steppable::concepts::Stream Concept Reference

Represents any streams with a .operator<<() method. More...

#include <concepts.hpp>

Concept definition

template<typename ObjectT>
concept steppable::concepts::Stream = requires(ObjectT object) {
{ object.operator<<() } -> std::same_as<std::ostream&>;
}
Represents any streams with a .operator<<() method.
Definition concepts.hpp:52

Detailed Description

Represents any streams with a .operator<<() method.

Untitled