Decodes a binary view array from `rows` with the provided `options`
(rows: &mut [&[u8]], options: SortOptions)
| 395 | |
| 396 | /// Decodes a binary view array from `rows` with the provided `options` |
| 397 | pub fn decode_binary_view(rows: &mut [&[u8]], options: SortOptions) -> BinaryViewArray { |
| 398 | decode_binary_view_inner(rows, options, false) |
| 399 | } |
| 400 | |
| 401 | /// Decodes a string array from `rows` with the provided `options` |
| 402 | /// |
nothing calls this directly
no test coverage detected