(key: &[u8; 16])
| 839 | /// Decode a position from 16 bytes |
| 840 | #[inline] |
| 841 | pub fn decode_position(key: &[u8; 16]) -> (u64, u64) { |
| 842 | let change_id = u64::from_be_bytes(key[0..8].try_into().unwrap()); |
| 843 | let pos = u64::from_be_bytes(key[8..16].try_into().unwrap()); |
| 844 | (change_id, pos) |
| 845 | } |
| 846 | |
| 847 | /// Encode a view-sequence pair as 16 bytes |
| 848 | #[inline] |