Google Cloud Bigtable C++ Client 2.13.0
A C++ Client Library for Google Cloud Bigtable
|
The in-memory representation of a Bigtable row. More...
#include <google/cloud/bigtable/row.h>
Public Member Functions | |
template<typename T > | |
Row (T &&row_key, std::vector< Cell > cells) | |
Create a row from a list of cells. More... | |
RowKeyType const & | row_key () const |
Return the row key. More... | |
std::vector< Cell > const & | cells () const & |
Return all cells. More... | |
std::vector< Cell > && | cells () && |
Return all cells. More... | |
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.
|
inline |
Create a row from a list of cells.
|
inline |
Return all cells.
|
inline |
Return all cells.
|
inline |
Return the row key.
The returned value is not valid after this object is deleted.