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
array::at (2 of 2 overloads)

Access an element, with bounds checking.

Synopsis
value const&
at(
    std::size_t pos) const;
Description

Returns a reference to the element specified at location pos, with bounds checking. If pos is not within the range of the container, an exception of type std::out_of_range is thrown.

Complexity

Constant.

Parameters

Name

Description

pos

A zero-based index.

Exceptions

Type

Thrown On

std::out_of_range

pos >= size()


PrevUpHomeNext