In `map_zeroed` and `map_prefix_tuple_zeroed`, we zero a byte slice by doing: ```rust for b in lv.0.iter_mut() { *b = 0; } ``` Instead, we could use [`[u8]::fill`](https://doc.rust-lang.org/std/primitive.slice.html#method.fill): ```rust lv.0.fill(0); ```