We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a58268 commit b5c04e6Copy full SHA for b5c04e6
src/libcore/array.rs
@@ -24,9 +24,12 @@ use crate::slice::{Iter, IterMut};
24
/// layout in memory of a fixed size array (for example, for unsafe
25
/// initialization).
26
///
27
-/// Note that the traits AsRef and AsMut provide similar methods for types that
+/// Note that the traits [`AsRef`] and [`AsMut`] provide similar methods for types that
28
/// may not be fixed-size arrays. Implementors should prefer those traits
29
/// instead.
30
+///
31
+/// [`AsRef`]: ../convert/trait.AsRef.html
32
+/// [`AsMut`]: ../convert/trait.AsMut.html
33
#[unstable(feature = "fixed_size_array", issue = "27778")]
34
pub unsafe trait FixedSizeArray<T> {
35
/// Converts the array to immutable slice
0 commit comments