...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Constructs an empty row.
row();
» more...
Copy constructor.
row(
const row& other);
» more...
Move constructor.
row(
row&& other);
» more...
Constructs a row from a row_view
.
row(
row_view r);
» more...