pub fn copy_into_col_major<T: Copy + MaybeSendSync>(
dst: &mut StridedViewMut<'_, T>,
src: &StridedView<'_, T>,
) -> Result<()>Expand description
Copy elements from src to dst, optimized for col-major destination.
Delegates to strided_perm::copy_into_col_major for the actual work.