Hide rustc unstable feature from docs

This commit is contained in:
Caleb Zulawski 2022-08-01 00:38:29 -04:00
parent 6bf5128235
commit c739af3908

View File

@ -271,7 +271,7 @@ where
/// The reverse of this operation is [`Simd::deinterleave`]. /// The reverse of this operation is [`Simd::deinterleave`].
/// ///
/// ``` /// ```
/// #![feature(portable_simd)] /// # #![feature(portable_simd)]
/// # use core::simd::Simd; /// # use core::simd::Simd;
/// let a = Simd::from_array([0, 1, 2, 3]); /// let a = Simd::from_array([0, 1, 2, 3]);
/// let b = Simd::from_array([4, 5, 6, 7]); /// let b = Simd::from_array([4, 5, 6, 7]);
@ -324,7 +324,7 @@ where
/// The reverse of this operation is [`Simd::interleave`]. /// The reverse of this operation is [`Simd::interleave`].
/// ///
/// ``` /// ```
/// #![feature(portable_simd)] /// # #![feature(portable_simd)]
/// # use core::simd::Simd; /// # use core::simd::Simd;
/// let a = Simd::from_array([0, 4, 1, 5]); /// let a = Simd::from_array([0, 4, 1, 5]);
/// let b = Simd::from_array([2, 6, 3, 7]); /// let b = Simd::from_array([2, 6, 3, 7]);