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 a development version of boost.
PrevUpHomeNext
stage_response::get_results (1 of 2 overloads)

Retrieves the contained results (unchecked accessor).

Synopsis
const results&
get_results() const& noexcept;
Description

If *this contains a results object, retrieves a reference to it. Otherwise, the behavior is undefined.

Preconditions

this->has_results() == true

Exception safety

No-throw guarantee.

Object lifetimes

The returned reference is valid as long as *this is alive and hasn't been assigned to.


PrevUpHomeNext