pub const fn fill_const<T: Copy>(slice: &mut [T], value: T)
Fills the given slice with the given, copyable value.
This requires T: Copy constraint, because it is const.
T: Copy