(&mut self, value: T)
| 680 | |
| 681 | #[inline] |
| 682 | pub fn fill(&mut self, value: T) -> &mut Self |
| 683 | where |
| 684 | T: Copy, |
| 685 | { |
| 686 | self.as_mut_slice().fill(value); |
| 687 | self |
| 688 | } |
| 689 | |
| 690 | #[inline] |
| 691 | pub fn fill_with(&mut self, mut f: impl FnMut(usize, usize) -> T) -> &mut Self { |