@@ -1081,17 +1081,15 @@ impl f32 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Returns max if self is greater than max, and min if self is less than min.
|
/// Returns max if self is greater than max, and min if self is less than min.
|
||||||
/// Otherwise this returns self. Panics if min > max, min is NaN, or max is NaN.
|
/// Otherwise this returns self. Panics if min > max, min equals NaN, or max equals NaN.
|
||||||
///
|
///
|
||||||
/// # Examples
|
/// # Examples
|
||||||
///
|
///
|
||||||
/// ```
|
/// ```
|
||||||
/// #![feature(clamp)]
|
|
||||||
/// use std::f32::NAN;
|
|
||||||
/// assert!((-3.0f32).clamp(-2.0f32, 1.0f32) == -2.0f32);
|
/// assert!((-3.0f32).clamp(-2.0f32, 1.0f32) == -2.0f32);
|
||||||
/// assert!((0.0f32).clamp(-2.0f32, 1.0f32) == 0.0f32);
|
/// assert!((0.0f32).clamp(-2.0f32, 1.0f32) == 0.0f32);
|
||||||
/// assert!((2.0f32).clamp(-2.0f32, 1.0f32) == 1.0f32);
|
/// assert!((2.0f32).clamp(-2.0f32, 1.0f32) == 1.0f32);
|
||||||
/// assert!((NAN).clamp(-2.0f32, 1.0f32).is_nan());
|
/// assert!((NAN).clamp(-2.0f32, 1.0f32) == NAN);
|
||||||
/// ```
|
/// ```
|
||||||
#[unstable(feature = "clamp", issue = "44095")]
|
#[unstable(feature = "clamp", issue = "44095")]
|
||||||
#[inline]
|
#[inline]
|
||||||
|
|||||||
Reference in New Issue
Block a user