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
row::at

Returns the i-th element in the row or throws an exception.

Synopsis
field_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