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

The concept is satisfied when T overloads the std::istream operator >>. More...

#include <concepts.hpp>

Concept definition

template<typename T>
concept ap::detail::c_readable = requires(T value, std::istream& input_stream) { input_stream >> value; }
The concept is satisfied when T overloads the std::istream operator >>.
Definition concepts.hpp:22

Detailed Description

The concept is satisfied when T overloads the std::istream operator >>.

Template Parameters
TType to check.

Definition at line 22 of file concepts.hpp.