Like ExtendCurrent, but do not check capacity
| 162 | |
| 163 | /// Like ExtendCurrent, but do not check capacity |
| 164 | void UnsafeExtendCurrent(const uint8_t* value, offset_type length) { |
| 165 | value_data_builder_.UnsafeAppend(value, length); |
| 166 | } |
| 167 | |
| 168 | void UnsafeExtendCurrent(std::string_view value) { |
| 169 | UnsafeExtendCurrent(reinterpret_cast<const uint8_t*>(value.data()), |