(
self,
fill: T,
)
| 830 | |
| 831 | #[inline] |
| 832 | pub fn resize<const NEW_ROWS: usize, const NEW_COLS: usize>( |
| 833 | self, |
| 834 | fill: T, |
| 835 | ) -> Matrix<NEW_ROWS, NEW_COLS, T> |
| 836 | where |
| 837 | T: Copy, |
| 838 | { |
| 839 | self.resize_with(|_, _| fill) |
| 840 | } |
| 841 | |
| 842 | #[inline] |
| 843 | pub fn resize_default<const NEW_ROWS: usize, const NEW_COLS: usize>( |
nothing calls this directly
no test coverage detected