cli11
Loading...
Searching...
No Matches
cli::detail::istreamable Concept Referenceexport
module cli11

Matches types that can be read from an input stream. More...

Concept definition

template<typename T, typename S = std::istringstream>
concept istreamable = requires(S &s, T &v) { s >> v; }
Matches types that can be read from an input stream.
Definition type_tools.cpp:212

Detailed Description

Matches types that can be read from an input stream.