pub fn copy_into_col_major<T>(
dst: &mut StridedViewMut<'_, T>,
src: &StridedView<'_, T>,
) -> Result<(), StridedError>where
T: Copy + MaybeSendSync,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.