We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4936f96 commit f1b69b0Copy full SHA for f1b69b0
src/libcore/slice/mod.rs
@@ -434,7 +434,7 @@ impl<T> [T] {
434
/// ```
435
///
436
/// [`as_ptr`]: #method.as_ptr
437
- #[unstable(feature = "slice_ptr_range", issue = "0")]
+ #[unstable(feature = "slice_ptr_range", issue = "65807")]
438
#[inline]
439
pub fn as_ptr_range(&self) -> Range<*const T> {
440
let start = self.as_ptr();
@@ -458,7 +458,7 @@ impl<T> [T] {
458
/// common in C++.
459
460
/// [`as_mut_ptr`]: #method.as_mut_ptr
461
462
463
pub fn as_mut_ptr_range(&mut self) -> Range<*mut T> {
464
let start = self.as_mut_ptr();
0 commit comments