Skip to content

Commit 304a17a

Browse files
authored
Rollup merge of #118361 - Dylan-DPC:80626/stab/bound-map, r=Amanieu
stabilise bound_map Closes #86026
2 parents 533cfde + a43dc2b commit 304a17a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

library/core/src/ops/range.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,6 @@ impl<T> Bound<T> {
710710
/// # Examples
711711
///
712712
/// ```
713-
/// #![feature(bound_map)]
714713
/// use std::ops::Bound::*;
715714
///
716715
/// let bound_string = Included("Hello, World!");
@@ -719,7 +718,6 @@ impl<T> Bound<T> {
719718
/// ```
720719
///
721720
/// ```
722-
/// #![feature(bound_map)]
723721
/// use std::ops::Bound;
724722
/// use Bound::*;
725723
///
@@ -728,7 +726,7 @@ impl<T> Bound<T> {
728726
/// assert_eq!(unbounded_string.map(|s| s.len()), Unbounded);
729727
/// ```
730728
#[inline]
731-
#[unstable(feature = "bound_map", issue = "86026")]
729+
#[stable(feature = "bound_map", since = "CURRENT_RUSTC_VERSION")]
732730
pub fn map<U, F: FnOnce(T) -> U>(self, f: F) -> Bound<U> {
733731
match self {
734732
Unbounded => Unbounded,

0 commit comments

Comments
 (0)