Stabilize clamp

This commit is contained in:
Jacob Kiesel
2020-10-12 15:09:45 -06:00
parent d6b5ffb5b4
commit a7d3368448
4 changed files with 3 additions and 8 deletions

View File

@@ -631,14 +631,12 @@ pub trait Ord: Eq + PartialOrd<Self> {
/// # Examples
///
/// ```
/// #![feature(clamp)]
///
/// assert!((-3).clamp(-2, 1) == -2);
/// assert!(0.clamp(-2, 1) == 0);
/// assert!(2.clamp(-2, 1) == 1);
/// ```
#[must_use]
#[unstable(feature = "clamp", issue = "44095")]
#[stable(feature = "clamp", since = "1.49.0")]
fn clamp(self, min: Self, max: Self) -> Self
where
Self: Sized,