Closed
Description
Currently we have impl From<&[T]> for Vec<T> where T: Clone
and impl From<&mut [T]> for Vec<T> where T: Clone
, should From<&[T; N]>
and From<&mut [T; N]>
also be implemented for Vec<T>
where T: Clone
?
Currently we have impl From<&[T]> for Vec<T> where T: Clone
and impl From<&mut [T]> for Vec<T> where T: Clone
, should From<&[T; N]>
and From<&mut [T; N]>
also be implemented for Vec<T>
where T: Clone
?