1 | // Copyright 2024 Brian Smith. |
2 | // |
3 | // Permission to use, copy, modify, and/or distribute this software for any |
4 | // purpose with or without fee is hereby granted, provided that the above |
5 | // copyright notice and this permission notice appear in all copies. |
6 | // |
7 | // THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES |
8 | // WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
9 | // MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY |
10 | // SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
11 | // WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION |
12 | // OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN |
13 | // CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
14 | |
15 | //! Utilities to make dealing with slices less tediuous. |
16 | |
17 | /// Replaces the first N elements of `a` with the first N elements of `b`, where |
18 | /// N is `core::cmp::min(a.len(), b.len())`, leaving the rest unchanged. |
19 | pub fn overwrite_at_start<T: Copy>(a: &mut [T], b: &[T]) { |
20 | a.iter_mut().zip(b).for_each(|(a: &mut T, b: &T)| { |
21 | *a = *b; |
22 | }); |
23 | } |
24 | |