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 an older version of Boost and was released in 2024. The current version is 1.90.0.
Retrieves the contained results (unchecked accessor).
results&& get_results();
If *this
contains a results object,
retrieves a reference to it. Otherwise, the behavior is undefined.
this->has_results()
== true
No-throw guarantee.
The returned reference is valid as long as *this is alive and hasn't been assigned
to.