Structs§
- Lz77
Match - Represents a match in the LZ77 algorithm.
Traits§
- Lz77
Parameters - This trait specifies constant parameters for the
lz77_get_longest_match_fastandlz77_get_longest_match_slowfunctions.
Functions§
- lz77_
get_ ⚠longest_ match_ fast - Searches back up to ‘COPY_MAX_LENGTH’ bytes and returns the length of the longest matching sequence of bytes. This is the fast version that assumes there are more than ‘COPY_MAX_LENGTH’ bytes left.
- lz77_
get_ ⚠longest_ match_ slow - Searches back up to ‘COPY_MAX_LENGTH’ bytes and returns the length of the longest matching sequence of bytes. This is the slow version that ensures we don’t overrun past the end of file.