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

PrevUpHomeNext
pooled_connection::operator-> (2 of 2 overloads)

Retrieves the connection owned by this object.

Synopsis
const any_connection*
operator->() const;
Preconditions

The object should own a connection (this->valid() == true).

Object lifetimes

The returned reference is valid as long as *this or an object move-constructed or move-assigned from *this is alive.

Exception safety

No-throw guarantee.


PrevUpHomeNext