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 within the Google Cloud Bigtable C++ client library, covering versions from 2.11.0 to the latest release candidate 2.37.0-rc."],["The `Row` class represents a single row of data retrieved from a Bigtable database, potentially after filtering operations, and may not contain all available data."],["The `Row` class can be constructed using a row key and a vector of cells, where a row key is the unique identifier of a row and cells represent the data within the row."],["Key functions of the `Row` class include `row_key()`, which returns the row's unique key, and `cells()`, which returns all the cells contained within the row, available in both `const` and non-`const` versions."],["The content offers version-specific documentation links, allowing developers to review the `Row` class details for different versions of the Bigtable C++ client library."]]],[]]