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

resultset::resultset
PrevUpHomeNext

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