|
|
const_reference at( size_type pos)const; | (since C++23) | |
Returns a reference to the entry at specified locationpos
, with bounds checking.
Ifpos
is not within the range of the stacktrace, an exception of typestd::out_of_range is thrown.
Contents |
pos | - | position of the stacktrace entry to return |
Reference to the requested entry.
std::out_of_range ifpos>= size().
Constant.
This section is incomplete Reason: no example |
access specified stacktrace entry (public member function)[edit] |