(coding: &Coding<u8>, compressed_text: &Box<[u64]>, total_size_bits: usize)
| 82 | } |
| 83 | |
| 84 | #[inline(always)] fn decode_from_queue(coding: &Coding<u8>, compressed_text: &Box<[u64]>, total_size_bits: usize) { |
| 85 | decode(coding, compressed_text.bit_in_range_iter(0..total_size_bits)); |
| 86 | } |
| 87 | |
| 88 | #[inline(always)] fn decode_from_stack(coding: &Coding<u8>, compressed_text: &Box<[u64]>, total_size_bits: usize) { |
| 89 | decode(coding, compressed_text.bit_in_range_iter(0..total_size_bits).rev()); |
no test coverage detected