...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Converts the row into a std::vector
of field
's.
template< class Allocator> void as_vector( std::vector< field, Allocator >& out) const;
As row
objects are read-only, you can use this function if you need to mutate
fields in a row.
Basic guarantee. Allocations may throw.
Linear in this->size()
.