fn decode_huffman_code<F>(
    r: &mut DecompressorOxide,
    l: &mut LocalVars,
    table: usize,
    flags: u32,
    in_iter: &mut InputWrapper<'_>,
    f: F,
) -> ActionExpand description
Try to decode the next huffman code, and puts it in the counter field of the decompressor if successful.
ยงReturns
The specified action returned from f on success,
Action::End if there are not enough data left to decode a symbol.