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 snapshot of the develop branch, built from commit 2daa88693b.
PrevUpHomeNext
stage_response::get_statement

Retrieves the contained statement (unchecked accessor).

Synopsis
statement
get_statement() const noexcept;
Description

If *this contains an statement, retrieves it. Otherwise, the behavior is undefined.

Preconditions

this->has_statement() == true

Exception safety

No-throw guarantee.


PrevUpHomeNext