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-21 UTC."],[[["This document outlines the `RowStream` class, which represents a stream of `Row` objects, and it is returned from `spanner::Client::Read()` or `spanner::Client::ExecuteQuery()`."],["The `RowStream` class can be directly iterated to return a sequence of `StatusOr\u003cRow\u003e` objects, or can be wrapped in a `StreamOf\u003cstd::tuple\u003c...\u003e\u003e` object for automatic parsing into tuples."],["The `RowStream` class has various constructors, including a move constructor, as well as an assignment operator."],["The `begin()` and `end()` methods provide `RowStreamIterator` instances to define the range for iteration over the row data."],["`RowsModified()` allows you to retrieve the number of rows that were modified, and `ReadTimestamp()` allows you to retrieve the timestamp of when the read occured."],["The different version numbers provided represent past versions of the `RowStream` class."],["The latest version available is `2.37.0-rc`, while the current documentation focuses on `2.33.0`."]]],[]]