1
Fork 0

Auto merge of #34876 - frewsxcv:vec-as-mut-slice, r=alexcrichton

Remove unnecessary indexing and deref in `Vec::as_mut_slice`.

None
This commit is contained in:
bors 2016-07-17 12:04:51 -07:00 committed by GitHub
commit f441bca499

View file

@ -520,7 +520,7 @@ impl<T> Vec<T> {
#[inline]
#[stable(feature = "vec_as_slice", since = "1.7.0")]
pub fn as_mut_slice(&mut self) -> &mut [T] {
&mut self[..]
self
}
/// Sets the length of a vector.