SRS-control 0.1.4
Loading...
Searching...
No Matches
srs::OutputTo Concept Reference

#include <CommonConcepts.hpp>

Concept definition

template<typename Converter, typename OutputType>
concept srs::OutputTo = requires(Converter converter) {
std::is_const_v<OutputType>;
std::is_reference_v<OutputType>;
{ converter(0) } -> std::same_as<OutputType>;
}

Detailed Description

Definition at line 37 of file CommonConcepts.hpp.