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

Matches types that can be written to an output stream. More...

Concept definition

template<typename T, typename S = std::ostringstream>
concept ostreamable = requires(S &s, const T &v) { s << v; }
Matches types that can be written to an output stream.
Definition type_tools.cpp:208

Detailed Description

Matches types that can be written to an output stream.