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.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-21 UTC."],[[["This webpage provides documentation for the `Row` class in the Google Cloud Bigtable C++ client library, detailing its structure and functionality across various versions."],["The latest version of the `Row` class documented is 2.37.0-rc, with multiple previous versions from 2.36.0 down to 2.11.0 also being listed and linked to."],["The `Row` class represents a single row of data retrieved from Bigtable, which may have been filtered based on application criteria, and exposes functionality such as retrieving the `row_key` and the `cells` contained within."],["The `Row` class has constructors that take a `row_key` and a `std::vector\u003cCell\u003e`, and various functions such as `row_key()` and `cells()` to access the data within, with const and rvalue reference overloads for the cells function."],["The `cells()` function returns all the cells for a given row, with overloads to return both a const reference and an rvalue reference to the list of cells."]]],[]]