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."],[[["This document provides a versioned history of the `Row` class within the Google Cloud Bigtable C++ client library, detailing versions from 2.11.0 up to the latest release candidate, 2.37.0-rc."],["The `Row` class represents an in-memory structure of a Bigtable row, which may contain a subset of the available data after being filtered."],["The `Row` class constructor can build an instance from a `row_key` and a vector of `cells`, each which require specific parameters."],["The `row_key()` function returns a constant reference to the row key, but it is invalid after the `Row` object is destroyed."],["The `cells()` function, in both its constant and non-constant versions, provides access to the cells within the row as a vector, allowing either read-only or move operations, respectively."]]],[]]