Class Row (2.23.0-rc)

The in-memory representation of a Bigtable row.

Notice that a row returned by the Bigtable Client may have been filtered by any filtering expressions provided by the application, and may not contain all the data available.

Constructors

Row(T &&, std::vector< Cell >)

Create a row from a list of cells.

Parameters
NameDescription
row_key T &&
cells std::vector< Cell >
typename T

Functions

row_key() const

Return the row key.

The returned value is not valid after this object is deleted.

Returns
TypeDescription
RowKeyType const &

cells() const &

Return all cells.

Returns
TypeDescription
std::vector< Cell > const &

cells() &&

Return all cells.

Returns
TypeDescription
std::vector< Cell > &&