f16::is_sign_{positive,negative} were feature-gated on f128
This commit is contained in:
parent
31110152e2
commit
fac0a74450
@ -226,7 +226,7 @@ pub const fn is_nan(self) -> bool {
|
|||||||
/// See [explanation of NaN as a special value](f32) for more info.
|
/// See [explanation of NaN as a special value](f32) for more info.
|
||||||
#[inline]
|
#[inline]
|
||||||
#[must_use]
|
#[must_use]
|
||||||
#[unstable(feature = "f128", issue = "116909")]
|
#[unstable(feature = "f16", issue = "116909")]
|
||||||
pub fn is_sign_positive(self) -> bool {
|
pub fn is_sign_positive(self) -> bool {
|
||||||
!self.is_sign_negative()
|
!self.is_sign_negative()
|
||||||
}
|
}
|
||||||
@ -239,7 +239,7 @@ pub fn is_sign_positive(self) -> bool {
|
|||||||
/// See [explanation of NaN as a special value](f32) for more info.
|
/// See [explanation of NaN as a special value](f32) for more info.
|
||||||
#[inline]
|
#[inline]
|
||||||
#[must_use]
|
#[must_use]
|
||||||
#[unstable(feature = "f128", issue = "116909")]
|
#[unstable(feature = "f16", issue = "116909")]
|
||||||
pub fn is_sign_negative(self) -> bool {
|
pub fn is_sign_negative(self) -> bool {
|
||||||
// IEEE754 says: isSignMinus(x) is true if and only if x has negative sign. isSignMinus
|
// IEEE754 says: isSignMinus(x) is true if and only if x has negative sign. isSignMinus
|
||||||
// applies to zeros and NaNs as well.
|
// applies to zeros and NaNs as well.
|
||||||
|
Loading…
Reference in New Issue
Block a user