CPP-AP 3.0.1
Command-line argument parser for C++20
Loading...
Searching...
No Matches
ap::util::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::util::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:33

Detailed Description

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

Template Parameters
TType to check.

Definition at line 33 of file concepts.hpp.