This commit is contained in:
Pyry Kontio 2022-05-02 23:29:02 +09:00
parent 7175c499ec
commit dea776512b
4 changed files with 10 additions and 10 deletions

View File

@ -747,8 +747,8 @@ impl f32 {
/// of the two numbers. For this operation, -0.0 is considered to be less than +0.0.
/// Note that this follows the semantics specified in IEEE 754-2019.
///
/// Also note that "propagation" of NaNs here doesn't mean that the bitpattern of a NaN operand
/// is necessarily conserved; see [explanation of NaN as a special value](f32) for more info.
/// Also note that "propagation" of NaNs here doesn't necessarily mean that the bitpattern of a NaN
/// operand is conserved; see [explanation of NaN as a special value](f32) for more info.
#[must_use = "this returns the result of the comparison, without modifying either input"]
#[unstable(feature = "float_minimum_maximum", issue = "91079")]
#[inline]
@ -782,8 +782,8 @@ impl f32 {
/// of the two numbers. For this operation, -0.0 is considered to be less than +0.0.
/// Note that this follows the semantics specified in IEEE 754-2019.
///
/// Also note that "propagation" of NaNs here doesn't mean that the bitpattern of a NaN operand
/// is necessarily conserved; see [explanation of NaN as a special value](f32) for more info.
/// Also note that "propagation" of NaNs here doesn't necessarily mean that the bitpattern of a NaN
/// operand is conserved; see [explanation of NaN as a special value](f32) for more info.
#[must_use = "this returns the result of the comparison, without modifying either input"]
#[unstable(feature = "float_minimum_maximum", issue = "91079")]
#[inline]

View File

@ -763,8 +763,8 @@ impl f64 {
/// of the two numbers. For this operation, -0.0 is considered to be less than +0.0.
/// Note that this follows the semantics specified in IEEE 754-2019.
///
/// Also note that "propagation" of NaNs here doesn't mean that the bitpattern of a NaN operand
/// is necessarily conserved; see [explanation of NaN as a special value](f32) for more info.
/// Also note that "propagation" of NaNs here doesn't necessarily mean that the bitpattern of a NaN
/// operand is conserved; see [explanation of NaN as a special value](f32) for more info.
#[must_use = "this returns the result of the comparison, without modifying either input"]
#[unstable(feature = "float_minimum_maximum", issue = "91079")]
#[inline]
@ -798,8 +798,8 @@ impl f64 {
/// of the two numbers. For this operation, -0.0 is considered to be less than +0.0.
/// Note that this follows the semantics specified in IEEE 754-2019.
///
/// Also note that "propagation" of NaNs here doesn't mean that the bitpattern of a NaN operand
/// is necessarily conserved; see [explanation of NaN as a special value](f32) for more info.
/// Also note that "propagation" of NaNs here doesn't necessarily mean that the bitpattern of a NaN
/// operand is conserved; see [explanation of NaN as a special value](f32) for more info.
#[must_use = "this returns the result of the comparison, without modifying either input"]
#[unstable(feature = "float_minimum_maximum", issue = "91079")]
#[inline]

View File

@ -302,7 +302,7 @@ impl f32 {
/// Raises a number to an integer power.
///
/// Using this function is generally faster than using `powf`.
/// It might have different sequence of rounding operations than `powf`,
/// It might have a different sequence of rounding operations than `powf`,
/// so the results are not guaranteed to agree.
///
/// # Examples

View File

@ -302,7 +302,7 @@ impl f64 {
/// Raises a number to an integer power.
///
/// Using this function is generally faster than using `powf`.
/// It might have different sequence of rounding operations than `powf`,
/// It might have a different sequence of rounding operations than `powf`,
/// so the results are not guaranteed to agree.
///
/// # Examples