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

underlying_row_t

Type trait to retrieve the underlying row type.

Synopsis

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

template<
    class StaticRow>
using underlying_row_t = see-below;
Description

Given an input type T satisfying the StaticRow concept, this trait is an alias for its underlying row type. It is defined as follows:

For instance, static_results::rows uses this trait to determine its return type.


PrevUpHomeNext