Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

PrevUpHomeNext

make_tuple_element_t

Type trait that applies the transformation performed by std::make_tuple to a single element.

Synopsis

Defined in header <boost/mysql/with_params.hpp>

template<
    class T>
using make_tuple_element_t = typename std::tuple_element< 0, decltype(std::make_tuple(std::declval< T && >()))>::type;
Description

For example:

Consult the std::make_tuple docs for more info.

Convenience header <boost/mysql.hpp>


PrevUpHomeNext