Skip to content

Commit 52417d5

Browse files
committed
Implement Borrow for fixed-size arrays
1 parent 9e9c83b commit 52417d5

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/libcore/array.rs

+15
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
integer constants",
2020
issue = "27778")]
2121

22+
use borrow::{Borrow, BorrowMut};
2223
use clone::Clone;
2324
use cmp::{PartialEq, Eq, PartialOrd, Ord, Ordering};
2425
use convert::{AsRef, AsMut};
@@ -70,6 +71,20 @@ macro_rules! array_impls {
7071
}
7172
}
7273

74+
#[stable(feature = "array_borrow", since = "1.4.0")]
75+
impl<T> Borrow<[T]> for [T; $N] {
76+
fn borrow(&self) -> &[T] {
77+
self
78+
}
79+
}
80+
81+
#[stable(feature = "array_borrow", since = "1.4.0")]
82+
impl<T> BorrowMut<[T]> for [T; $N] {
83+
fn borrow_mut(&mut self) -> &mut [T] {
84+
self
85+
}
86+
}
87+
7388
#[stable(feature = "rust1", since = "1.0.0")]
7489
impl<T:Copy> Clone for [T; $N] {
7590
fn clone(&self) -> [T; $N] {

0 commit comments

Comments
 (0)