(out: &mut [u8], opts: SortOptions)
| 134 | } |
| 135 | |
| 136 | pub fn encode_null(out: &mut [u8], opts: SortOptions) -> usize { |
| 137 | out[0] = null_sentinel(opts); |
| 138 | 1 |
| 139 | } |
| 140 | |
| 141 | pub fn encode_empty(out: &mut [u8], opts: SortOptions) -> usize { |
| 142 | out[0] = match opts.descending { |
no test coverage detected