Convert the [`StringViewArray`] to [`BinaryViewArray`]
(self)
| 1137 | impl StringViewArray { |
| 1138 | /// Convert the [`StringViewArray`] to [`BinaryViewArray`] |
| 1139 | pub fn to_binary_view(self) -> BinaryViewArray { |
| 1140 | unsafe { BinaryViewArray::new_unchecked(self.views, self.buffers, self.nulls) } |
| 1141 | } |
| 1142 | |
| 1143 | /// Returns true if all data within this array is ASCII |
| 1144 | pub fn is_ascii(&self) -> bool { |
no outgoing calls
no test coverage detected