Convert the [`BinaryViewArray`] to [`StringViewArray`] # Safety Caller is responsible for ensuring that items in array are utf8 data.
(self)
| 1105 | /// # Safety |
| 1106 | /// Caller is responsible for ensuring that items in array are utf8 data. |
| 1107 | pub unsafe fn to_string_view_unchecked(self) -> StringViewArray { |
| 1108 | unsafe { StringViewArray::new_unchecked(self.views, self.buffers, self.nulls) } |
| 1109 | } |
| 1110 | } |
| 1111 | |
| 1112 | impl From<Vec<&[u8]>> for BinaryViewArray { |
no outgoing calls
no test coverage detected