Compacts ([ScalarValue::compact]) the current [ScalarValue] and returns it.
(mut self)
| 4800 | |
| 4801 | /// Compacts ([ScalarValue::compact]) the current [ScalarValue] and returns it. |
| 4802 | pub fn compacted(mut self) -> Self { |
| 4803 | self.compact(); |
| 4804 | self |
| 4805 | } |
| 4806 | |
| 4807 | /// Recursively compacts the backing buffers of any [`StringViewArray`] or |
| 4808 | /// [`BinaryViewArray`] nested within `array`. |
no test coverage detected