CPP-AP 2.2.6
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:29

Detailed Description

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

Template Parameters
TType to check.

Definition at line 29 of file concepts.hpp.