Advance builder without allocating nor writing any values The internal pointer is advanced by `length` values and the same number of non-null entries are appended to the validity bitmap. This method assumes that the `length` values were populated directly, for example using `GetMutableValue`.
| 331 | /// This method assumes that the `length` values were populated directly, |
| 332 | /// for example using `GetMutableValue`. |
| 333 | void UnsafeAdvance(int64_t length) { |
| 334 | data_builder_.UnsafeAdvance(length); |
| 335 | UnsafeAppendToBitmap(length, true); |
| 336 | } |
| 337 | |
| 338 | /// Advance builder without allocating nor writing any values |
| 339 | /// |
no test coverage detected