(
self,
)
| 841 | |
| 842 | #[inline] |
| 843 | pub fn resize_default<const NEW_ROWS: usize, const NEW_COLS: usize>( |
| 844 | self, |
| 845 | ) -> Matrix<NEW_ROWS, NEW_COLS, T> |
| 846 | where |
| 847 | T: Copy + Default, |
| 848 | { |
| 849 | self.resize_with(|_, _| T::default()) |
| 850 | } |
| 851 | |
| 852 | #[inline] |
| 853 | pub fn resize_with<const NEW_ROWS: usize, const NEW_COLS: usize>( |
nothing calls this directly
no test coverage detected