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

Matches anything that can be iterated over. More...

Concept definition

template<typename T>
concept readable_container = requires(T c) {
c.begin();
c.end();
}
Matches anything that can be iterated over.
Definition type_tools.cpp:259

Detailed Description

Matches anything that can be iterated over.