This is a range defined by the Input Iterators returned from its begin() and end() members. Callers may directly iterate the RowStream instance, which will return a sequence of StatusOr<Row> objects.
For convenience, callers may wrap instances in a StreamOf<std::tuple<...>> object, which will automatically parse each Row into a std::tuple with the specified types.
[[["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 outlines the `RowStream` class within the Google Cloud Spanner C++ library, used to manage the stream of `Rows` returned from `spanner::Client::Read()` or `spanner::Client::ExecuteQuery()`."],["The `RowStream` instance provides access to a sequence of `StatusOr\u003cRow\u003e` objects via its `begin()` and `end()` methods, adhering to C++ Input Iterator requirements for iteration."],["Users have the option to use a `StreamOf\u003cstd::tuple\u003c...\u003e\u003e` object, to automatically parse `Row` objects into `std::tuple` with specified data types."],["The class includes constructors, operators for move semantics, and methods such as `RowsModified()` to track changes and `ReadTimestamp()` to get the read time in read-only transactions."],["This reference includes an array of previous versions of the `RowStream` documentation, beginning with the version 2.11.0, and up to version 2.37.0-rc, the latest version."]]],[]]