We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edad2ef commit 1b3ecbcCopy full SHA for 1b3ecbc
src/libcore/ops/range.rs
@@ -400,11 +400,9 @@ impl<Idx> RangeInclusive<Idx> {
400
/// # Examples
401
///
402
/// ```
403
- /// #![feature(inclusive_range_methods)]
404
- ///
405
/// assert_eq!((3..=5).into_inner(), (3, 5));
406
407
- #[unstable(feature = "inclusive_range_methods", issue = "49022")]
+ #[stable(feature = "inclusive_range_methods", since = "1.27.0")]
408
#[inline]
409
pub fn into_inner(self) -> (Idx, Idx) {
410
(self.start, self.end)
0 commit comments