CPP-AP 2.7.0
Command-line argument parser for C++20
Loading...
Searching...
No Matches
ap::detail::c_writable Concept Reference

The concept is satisfied when T overloads the std::ostream operator <<. More...

#include <concepts.hpp>

Concept definition

template<typename T>
concept ap::detail::c_writable = requires(T value, std::ostream& output_stream) { output_stream << value; }
The concept is satisfied when T overloads the std::ostream operator <<.
Definition concepts.hpp:36

Detailed Description

The concept is satisfied when T overloads the std::ostream operator <<.

Template Parameters
TType to check.

Definition at line 36 of file concepts.hpp.