Define the interfaces to create ReadWriteModifyRule operations.
Cloud Bigtable has operations to perform atomic updates to a row, such as incrementing an integer value or appending to a string value. The changes are represented by a ReadModifyWriteRule operations. One or much such operations can be sent in a single request. This class helps users create the operations through a more idiomatic C++ interface.
[[["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 `ReadModifyWriteRule` class in Cloud Bigtable C++ provides a way to define operations for performing atomic updates on rows, like incrementing values or appending strings."],["This class supports multiple versions of the API, with the latest being version 2.37.0-rc, and links are provided to access the documentation for versions ranging from 2.11.0 up to the latest."],["The class contains constructors and assignment operators for managing `ReadModifyWriteRule` objects, supporting both move and copy semantics."],["The class provides functions to convert the defined operation to a protobuf representation, using `as_proto()`, which can either return a constant reference or move out the value."],["Static methods `AppendValue` and `IncrementAmount` allow for creating operations that append a string or increment an integer, respectively, defining the target column family, qualifier, and value or increment amount."]]],[]]