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 3e299386d9.
PrevUpHomeNext
resultset::resultset

Constructs an empty resultset.

resultset();
  » more...

Copy constructor.

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

Move constructor.

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

Constructs a resultset object by taking ownership of a view.

resultset(
    resultset_view v);
  » more...

PrevUpHomeNext