CLI11
C++11 Command Line Interface Parser
|
#include <TypeTools.hpp>
Static Public Member Functions | |
template<typename Q > | |
static auto | first (Q &&pair_value) -> decltype(std::get< 0 >(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::get< 1 >(std::forward< Q >(pair_value))) |
Get the second value (really just the underlying value) | |
Adaptor for map-like structure (true version, must have key_type and mapped_type). This wraps a mapped container in a few utilities access it in a general way.