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 | |
|---|---|
| Name | Description | 
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 | |
|---|---|
| Type | Description | 
RowKeyType const & | 
        |
cells() const &
Return all cells.
| Returns | |
|---|---|
| Type | Description | 
std::vector< Cell > const & | 
        |
cells() &&
Return all cells.
| Returns | |
|---|---|
| Type | Description | 
std::vector< Cell > && | 
        |