Converts this set into a `StringArray`/`LargeStringArray` or `BinaryArray`/`LargeBinaryArray` containing each distinct value that was interned. This is done without copying the values.
(self)
| 76 | /// `BinaryArray`/`LargeBinaryArray` containing each distinct value that |
| 77 | /// was interned. This is done without copying the values. |
| 78 | pub fn into_state(self) -> ArrayRef { |
| 79 | self.0.into_state() |
| 80 | } |
| 81 | |
| 82 | /// Returns the total number of distinct values (including nulls) seen so far |
| 83 | pub fn len(&self) -> usize { |
no test coverage detected