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."],[[["The webpage provides documentation for various versions of the Google Cloud Bigtable C++ client library, ranging from version 2.11.0 up to the release candidate 2.37.0-rc."],["The content details the `Row` class within the `google::cloud::bigtable` namespace, describing its in-memory representation of a Bigtable row which can be affected by user filters."],["The documentation covers the `Row` class constructor, which takes a row key and a vector of cells as input."],["It outlines the `row_key()` function, which returns the row key, and the `cells()` function, which returns a vector of `Cell` objects in both constant and move contexts."],["The `cells()` function allows for retrieval of all the cells within a row, either as a constant reference or as a moved vector, depending on the context of use."]]],[]]