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
resultset::operator=

Copy assignment.

resultset&
operator=(
    const resultset& other);
  » more...

Move assignment.

resultset&
operator=(
    resultset&& other);
  » more...

Replaces the contents of *this with a resultset_view.

resultset&
operator=(
    resultset_view v);
  » more...

PrevUpHomeNext