| 1001 | Allocator *get_custom_allocator() { return allocator_; } |
| 1002 | |
| 1003 | uoffset_t size() const { |
| 1004 | return static_cast<uoffset_t>(reserved_ - static_cast<size_t>(cur_ - buf_)); |
| 1005 | } |
| 1006 | |
| 1007 | uoffset_t scratch_size() const { |
| 1008 | return static_cast<uoffset_t>(scratch_ - buf_); |
no outgoing calls
no test coverage detected