@brief The current size of the serialized buffer, counting from the end. @return Returns an `uoffset_t` with the current size of the buffer.
| 1243 | /// @brief The current size of the serialized buffer, counting from the end. |
| 1244 | /// @return Returns an `uoffset_t` with the current size of the buffer. |
| 1245 | uoffset_t GetSize() const { return buf_.size(); } |
| 1246 | |
| 1247 | /// @brief Get the serialized buffer (after you call `Finish()`). |
| 1248 | /// @return Returns an `uint8_t` pointer to the FlatBuffer data inside the |
no test coverage detected