Downcast this to a [`StringViewArray`] returning `None` if not possible
(&self)
| 879 | |
| 880 | /// Downcast this to a [`StringViewArray`] returning `None` if not possible |
| 881 | fn as_string_view_opt(&self) -> Option<&StringViewArray> { |
| 882 | self.as_byte_view_opt() |
| 883 | } |
| 884 | |
| 885 | /// Downcast this to a [`StringViewArray`] panicking if not possible |
| 886 | fn as_string_view(&self) -> &StringViewArray { |
no test coverage detected