Returns the number of bytes of encoded data
(row: &[u8], options: SortOptions)
| 259 | |
| 260 | /// Returns the number of bytes of encoded data |
| 261 | fn decoded_len(row: &[u8], options: SortOptions) -> usize { |
| 262 | let mut len = 0; |
| 263 | decode_blocks(row, options, |block| len += block.len()); |
| 264 | len |
| 265 | } |
| 266 | |
| 267 | /// Decodes a binary array from `rows` with the provided `options` |
| 268 | pub fn decode_binary<I: OffsetSizeTrait>( |
no test coverage detected