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

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext
rows::at

Returns the i-th row or throws an exception.

Synopsis
row_view
at(
    std::size_t i) const;
Exception safety

Strong guranatee. Throws on invalid input.

Exceptions

Type

Thrown On

std::out_of_range

i >= this->size()

Complexity

Constant.


PrevUpHomeNext