@brief Get the serialized buffer (after you call `Finish()`). @return Returns an `uint8_t` pointer to the FlatBuffer data inside the buffer.
| 1323 | /// @return Returns an `uint8_t` pointer to the FlatBuffer data inside the |
| 1324 | /// buffer. |
| 1325 | uint8_t *GetBufferPointer() const { |
| 1326 | Finished(); |
| 1327 | return buf_.data(); |
| 1328 | } |
| 1329 | |
| 1330 | /// @brief Get the serialized buffer (after you call `Finish()`) as a span. |
| 1331 | /// @return Returns a constructed flatbuffers::span that is a view over the |