Append a single scalar under the assumption that the underlying Buffer is large enough. This method does not capacity-check; make sure to call Reserve beforehand.
| 315 | /// This method does not capacity-check; make sure to call Reserve |
| 316 | /// beforehand. |
| 317 | void UnsafeAppend(const value_type val) { |
| 318 | ArrayBuilder::UnsafeAppendToBitmap(true); |
| 319 | data_builder_.UnsafeAppend(val); |
| 320 | } |
| 321 | |
| 322 | void UnsafeAppendNull() { |
| 323 | ArrayBuilder::UnsafeAppendToBitmap(false); |
no test coverage detected