MCPcopy Create free account
hub / github.com/beling/bsuccinct-rs / decode_from_queue

Function decode_from_queue

coding_benchmark/src/minimum_redundancy.rs:84–86  ·  view source on GitHub ↗
(coding: &Coding<u8>, compressed_text: &Box<[u64]>, total_size_bits: usize)

Source from the content-addressed store, hash-verified

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());

Callers 2

benchmark_u8Function · 0.85
benchmarkFunction · 0.85

Calls 2

decodeFunction · 0.85
bit_in_range_iterMethod · 0.80

Tested by

no test coverage detected