Get a mutable pointer to tables/strings inside this vector.
| 249 | |
| 250 | // Get a mutable pointer to tables/strings inside this vector. |
| 251 | mutable_return_type GetMutableObject(uoffset_t i) const { |
| 252 | assert(i < size()); |
| 253 | return const_cast<mutable_return_type>(IndirectHelper<T>::Read(Data(), i)); |
| 254 | } |
| 255 | |
| 256 | // The raw data in little endian format. Use with care. |
| 257 | const uint8_t *Data() const { |
nothing calls this directly
no outgoing calls
no test coverage detected