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-14 UTC."],[[["The webpage provides documentation for different versions of the Bigtable `Row` class, ranging from version 2.11.0 to 2.36.0, with 2.37.0-rc being the latest release candidate."],["The `Row` class represents an in-memory Bigtable row that might be filtered based on application-defined criteria, and thus might not show all available data."],["The `Row` class has a constructor that takes a row key and a vector of cells to create a row object."],["The class provides functions to retrieve the row key (`row_key()`) and all cells associated with the row (`cells()`)."],["Both const and non-const versions of the `cells()` function are available for retrieving all cells."]]],[]]