Temporary mutable access to a value. This pointer becomes invalid on the next modifying operation.
| 859 | /// |
| 860 | /// This pointer becomes invalid on the next modifying operation. |
| 861 | uint8_t* GetMutableValue(int64_t i) { |
| 862 | uint8_t* data_ptr = byte_builder_.mutable_data(); |
| 863 | return data_ptr + i * byte_width_; |
| 864 | } |
| 865 | |
| 866 | /// Temporary mutable access to a value. |
| 867 | /// |
no test coverage detected