Skip to content

Commit 0c3e0ab

Browse files
committed
Fill-in tracking issue for feature(cmp_minmax)
1 parent fe87063 commit 0c3e0ab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

library/core/src/cmp.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1286,7 +1286,7 @@ pub fn max_by_key<T, F: FnMut(&T) -> K, K: Ord>(v1: T, v2: T, mut f: F) -> T {
12861286
/// ```
12871287
#[inline]
12881288
#[must_use]
1289-
#[unstable(feature = "cmp_minmax", issue = "none")]
1289+
#[unstable(feature = "cmp_minmax", issue = "115939")]
12901290
pub fn minmax<T>(v1: T, v2: T) -> [T; 2]
12911291
where
12921292
T: Ord,
@@ -1314,7 +1314,7 @@ where
13141314
/// ```
13151315
#[inline]
13161316
#[must_use]
1317-
#[unstable(feature = "cmp_minmax", issue = "none")]
1317+
#[unstable(feature = "cmp_minmax", issue = "115939")]
13181318
pub fn minmax_by<T, F>(v1: T, v2: T, compare: F) -> [T; 2]
13191319
where
13201320
F: FnOnce(&T, &T) -> Ordering,
@@ -1342,7 +1342,7 @@ where
13421342
/// ```
13431343
#[inline]
13441344
#[must_use]
1345-
#[unstable(feature = "cmp_minmax", issue = "none")]
1345+
#[unstable(feature = "cmp_minmax", issue = "115939")]
13461346
pub fn minmax_by_key<T, F, K>(v1: T, v2: T, mut f: F) -> [T; 2]
13471347
where
13481348
F: FnMut(&T) -> K,

0 commit comments

Comments
 (0)