Change elements if you have a non-const pointer to this object. Scalars only. See reflection.h, and the documentation.
| 326 | // Change elements if you have a non-const pointer to this object. |
| 327 | // Scalars only. See reflection.h, and the documentation. |
| 328 | void Mutate(uoffset_t i, const T &val) { |
| 329 | FLATBUFFERS_ASSERT(i < size()); |
| 330 | WriteScalar(data() + i, val); |
| 331 | } |
| 332 | |
| 333 | // Change an element of a vector of tables (or strings). |
| 334 | // "val" points to the new table/string, as you can obtain from |
nothing calls this directly
no test coverage detected