CLI11 2.2.0
Loading...
Searching...
No Matches
CLI::detail::is_readable_container< T, conditional_t< false, void_t< decltype(std::declval< T >().end()), decltype(std::declval< T >().begin())>, void > > Struct Template Reference

#include <TypeTools.hpp>

Inheritance diagram for CLI::detail::is_readable_container< T, conditional_t< false, void_t< decltype(std::declval< T >().end()), decltype(std::declval< T >().begin())>, void > >:
Collaboration diagram for CLI::detail::is_readable_container< T, conditional_t< false, void_t< decltype(std::declval< T >().end()), decltype(std::declval< T >().begin())>, void > >:

Detailed Description

template<typename T>
struct CLI::detail::is_readable_container< T, conditional_t< false, void_t< decltype(std::declval< T >().end()), decltype(std::declval< T >().begin())>, void > >

type trait to test if a type is a container meaning it has a value_type, it has an iterator, a clear, and an end methods and an insert function. And for our purposes we exclude std::string and types that can be constructed from a std::string


The documentation for this struct was generated from the following file: