Converts this set into a `StringViewArray` or `BinaryViewArray` containing each distinct value that was interned. This is done without copying the values.
(self)
| 60 | /// containing each distinct value that was interned. |
| 61 | /// This is done without copying the values. |
| 62 | pub fn into_state(self) -> ArrayRef { |
| 63 | self.0.into_state() |
| 64 | } |
| 65 | |
| 66 | /// Returns the total number of distinct values (including nulls) seen so far |
| 67 | pub fn len(&self) -> usize { |
no test coverage detected