Returns the current values buffer and null buffer as a slice
(&mut self)
| 368 | |
| 369 | /// Returns the current values buffer and null buffer as a slice |
| 370 | pub fn slices_mut(&mut self) -> (&mut [T::Native], Option<&mut [u8]>) { |
| 371 | ( |
| 372 | self.values_builder.as_mut_slice(), |
| 373 | self.null_buffer_builder.as_slice_mut(), |
| 374 | ) |
| 375 | } |
| 376 | } |
| 377 | |
| 378 | impl<P: DecimalType> PrimitiveBuilder<P> { |
no test coverage detected