@@ -628,6 +628,7 @@ impl f32 {
628
628
///
629
629
/// assert!(abs_difference <= f32::EPSILON);
630
630
/// ```
631
+ #[ must_use = "this returns the result of the operation, without modifying the original" ]
631
632
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
632
633
#[ inline]
633
634
pub fn recip ( self ) -> f32 {
@@ -684,6 +685,7 @@ impl f32 {
684
685
/// ```
685
686
///
686
687
/// If one of the arguments is NaN, then the other argument is returned.
688
+ #[ must_use = "this returns the result of the comparison, without modifying either input" ]
687
689
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
688
690
#[ inline]
689
691
pub fn max ( self , other : f32 ) -> f32 {
@@ -703,6 +705,7 @@ impl f32 {
703
705
/// ```
704
706
///
705
707
/// If one of the arguments is NaN, then the other argument is returned.
708
+ #[ must_use = "this returns the result of the comparison, without modifying either input" ]
706
709
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
707
710
#[ inline]
708
711
pub fn min ( self , other : f32 ) -> f32 {
@@ -726,6 +729,7 @@ impl f32 {
726
729
/// If one of the arguments is NaN, then NaN is returned. Otherwise this returns the greater
727
730
/// of the two numbers. For this operation, -0.0 is considered to be less than +0.0.
728
731
/// Note that this follows the semantics specified in IEEE 754-2019.
732
+ #[ must_use = "this returns the result of the comparison, without modifying either input" ]
729
733
#[ unstable( feature = "float_minimum_maximum" , issue = "91079" ) ]
730
734
#[ inline]
731
735
pub fn maximum ( self , other : f32 ) -> f32 {
@@ -757,6 +761,7 @@ impl f32 {
757
761
/// If one of the arguments is NaN, then NaN is returned. Otherwise this returns the lesser
758
762
/// of the two numbers. For this operation, -0.0 is considered to be less than +0.0.
759
763
/// Note that this follows the semantics specified in IEEE 754-2019.
764
+ #[ must_use = "this returns the result of the comparison, without modifying either input" ]
760
765
#[ unstable( feature = "float_minimum_maximum" , issue = "91079" ) ]
761
766
#[ inline]
762
767
pub fn minimum ( self , other : f32 ) -> f32 {
0 commit comments