Open
Description
I'm submitting a
- exploratory
Current Behaviour:
all smartcore::linalg::basic:arrays
are implemented for Vec:
impl<T: Debug + Display + Copy + Sized> Array<T, usize> for Vec<T>
Expected Behaviour:
Try to consider the possibility of implementing arrays for slices:
impl<T: Debug + Display + Copy + Sized> Array<T, usize> for [T]