![]() |
Home | Libraries | People | FAQ | More |
Move constructor.
pooled_connection(
pooled_connection
&& other) noexcept;
Transfers connection ownership from other
to *this
.
After this function returns, if other.valid() == true
, this->valid() == true
. In any case, other
will become invalid (other.valid() == false
).
No-throw guarantee.