File tree 1 file changed +2
-4
lines changed
1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -1081,17 +1081,15 @@ impl f32 {
1081
1081
}
1082
1082
1083
1083
/// Returns max if self is greater than max, and min if self is less than min.
1084
- /// Otherwise this returns self. Panics if min > max, min is NaN, or max is NaN.
1084
+ /// Otherwise this returns self. Panics if min > max, min equals NaN, or max equals NaN.
1085
1085
///
1086
1086
/// # Examples
1087
1087
///
1088
1088
/// ```
1089
- /// #![feature(clamp)]
1090
- /// use std::f32::NAN;
1091
1089
/// assert!((-3.0f32).clamp(-2.0f32, 1.0f32) == -2.0f32);
1092
1090
/// assert!((0.0f32).clamp(-2.0f32, 1.0f32) == 0.0f32);
1093
1091
/// assert!((2.0f32).clamp(-2.0f32, 1.0f32) == 1.0f32);
1094
- /// assert!((NAN).clamp(-2.0f32, 1.0f32).is_nan() );
1092
+ /// assert!((NAN).clamp(-2.0f32, 1.0f32) == NAN );
1095
1093
/// ```
1096
1094
#[ unstable( feature = "clamp" , issue = "44095" ) ]
1097
1095
#[ inline]
You can’t perform that action at this time.
0 commit comments