pub fn fill_repeat(output: &mut Vec<u8>, pattern: &[u8], count: usize)Expand description
Fill buffer with a repeating pattern.
Used for run-length encoding where a pattern repeats many times.
ยงArguments
output- Output buffer to extendpattern- Pattern to repeatcount- Number of times to repeat the pattern