Boost C++ Libraries Home Libraries People FAQ More

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