pub fn slice2array_unchecked<T, const N: usize>(slice: &[T]) -> [T; N]where
T: Copy,
Expand description
Just like slice2array
but without the checking.
ยงExamples
assert_eq!(
array_bytes::slice2array_unchecked::<_, 8>(&[5, 2, 0, 1, 3, 1, 4, 0]),
[5, 2, 0, 1, 3, 1, 4, 0]
);