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 the centralized permutation-copy dispatch for the actual work.