Adaptor for set-like structure: This just wraps a normal container in a few utilities that do almost nothing.
More...
#include <CLI11.hpp>
|
template<typename Q > |
static auto | first (Q &&pair_value) -> decltype(std::forward< Q >(pair_value)) |
| Get the first value (really just the underlying value)
|
|
template<typename Q > |
static auto | second (Q &&pair_value) -> decltype(std::forward< Q >(pair_value)) |
| Get the second value (really just the underlying value)
|
|
template<typename
T, typename
_ = void>
struct CLI::detail::pair_adaptor< T, _ >
Definition at line 929 of file CLI11.hpp.
◆ first_type
template<typename
T , typename
_ = void>
◆ second_type
template<typename
T , typename
_ = void>
◆ value_type
template<typename
T , typename
_ = void>
◆ first()
template<typename
T , typename
_ = void>
template<typename Q >
Definition at line 935 of file CLI11.hpp.
935 {
936 return std::forward<Q>(pair_value);
937 }
◆ second()
template<typename
T , typename
_ = void>
template<typename Q >
Definition at line 939 of file CLI11.hpp.
939 {
940 return std::forward<Q>(pair_value);
941 }
The documentation for this struct was generated from the following file: