\brief Append without checking capacity Builder should have been presized using Reserve() and ReserveData(), respectively, and the value must not be larger than 2GB
| 628 | /// Builder should have been presized using Reserve() and ReserveData(), |
| 629 | /// respectively, and the value must not be larger than 2GB |
| 630 | void UnsafeAppend(const uint8_t* value, int64_t length) { |
| 631 | UnsafeAppendToBitmap(true); |
| 632 | auto v = data_heap_builder_.Append</*Safe=*/false>(value, length); |
| 633 | data_builder_.UnsafeAppend(v); |
| 634 | } |
| 635 | |
| 636 | void UnsafeAppend(const char* value, int64_t length) { |
| 637 | UnsafeAppend(reinterpret_cast<const uint8_t*>(value), length); |
no test coverage detected