\brief Set the cached physical null count \param v the number of nulls in the ArrayData This should only be used when initially populating the ArrayData, if it possible to compute the null count without visiting the entire validity bitmap. In most cases, relying on `GetNullCount` is sufficient.
| 356 | /// it possible to compute the null count without visiting the entire validity |
| 357 | /// bitmap. In most cases, relying on `GetNullCount` is sufficient. |
| 358 | void SetNullCount(int64_t v) { null_count.store(v); } |
| 359 | |
| 360 | /// \brief Return the physical null count |
| 361 | /// |