@@ -1095,6 +1095,9 @@ $EndFeature, "
1095
1095
without modifying the original"]
1096
1096
#[ inline]
1097
1097
pub const fn checked_pow( self , mut exp: u32 ) -> Option <Self > {
1098
+ if exp == 0 {
1099
+ return Some ( 1 ) ;
1100
+ }
1098
1101
let mut base = self ;
1099
1102
let mut acc: Self = 1 ;
1100
1103
@@ -1105,15 +1108,11 @@ $EndFeature, "
1105
1108
exp /= 2 ;
1106
1109
base = try_opt!( base. checked_mul( base) ) ;
1107
1110
}
1108
-
1111
+ // since exp!=0, finally the exp must be 1.
1109
1112
// Deal with the final bit of the exponent separately, since
1110
1113
// squaring the base afterwards is not necessary and may cause a
1111
1114
// needless overflow.
1112
- if exp == 1 {
1113
- acc = try_opt!( acc. checked_mul( base) ) ;
1114
- }
1115
-
1116
- Some ( acc)
1115
+ Some ( try_opt!( acc. checked_mul( base) ) )
1117
1116
}
1118
1117
}
1119
1118
@@ -1622,6 +1621,9 @@ $EndFeature, "
1622
1621
without modifying the original"]
1623
1622
#[ inline]
1624
1623
pub const fn wrapping_pow( self , mut exp: u32 ) -> Self {
1624
+ if exp == 0 {
1625
+ return 1 ;
1626
+ }
1625
1627
let mut base = self ;
1626
1628
let mut acc: Self = 1 ;
1627
1629
@@ -1633,14 +1635,11 @@ $EndFeature, "
1633
1635
base = base. wrapping_mul( base) ;
1634
1636
}
1635
1637
1638
+ // since exp!=0, finally the exp must be 1.
1636
1639
// Deal with the final bit of the exponent separately, since
1637
1640
// squaring the base afterwards is not necessary and may cause a
1638
1641
// needless overflow.
1639
- if exp == 1 {
1640
- acc = acc. wrapping_mul( base) ;
1641
- }
1642
-
1643
- acc
1642
+ acc. wrapping_mul( base)
1644
1643
}
1645
1644
}
1646
1645
@@ -1989,6 +1988,9 @@ $EndFeature, "
1989
1988
without modifying the original"]
1990
1989
#[ inline]
1991
1990
pub const fn overflowing_pow( self , mut exp: u32 ) -> ( Self , bool ) {
1991
+ if exp == 0 {
1992
+ return ( 1 , false ) ;
1993
+ }
1992
1994
let mut base = self ;
1993
1995
let mut acc: Self = 1 ;
1994
1996
let mut overflown = false ;
@@ -2007,16 +2009,13 @@ $EndFeature, "
2007
2009
overflown |= r. 1 ;
2008
2010
}
2009
2011
2012
+ // since exp!=0, finally the exp must be 1.
2010
2013
// Deal with the final bit of the exponent separately, since
2011
2014
// squaring the base afterwards is not necessary and may cause a
2012
2015
// needless overflow.
2013
- if exp == 1 {
2014
- r = acc. overflowing_mul( base) ;
2015
- acc = r. 0 ;
2016
- overflown |= r. 1 ;
2017
- }
2018
-
2019
- ( acc, overflown)
2016
+ r = acc. overflowing_mul( base) ;
2017
+ r. 1 |= overflown;
2018
+ r
2020
2019
}
2021
2020
}
2022
2021
@@ -2040,6 +2039,9 @@ $EndFeature, "
2040
2039
#[ inline]
2041
2040
#[ rustc_inherit_overflow_checks]
2042
2041
pub const fn pow( self , mut exp: u32 ) -> Self {
2042
+ if exp == 0 {
2043
+ return 1 ;
2044
+ }
2043
2045
let mut base = self ;
2044
2046
let mut acc = 1 ;
2045
2047
@@ -2051,14 +2053,11 @@ $EndFeature, "
2051
2053
base = base * base;
2052
2054
}
2053
2055
2056
+ // since exp!=0, finally the exp must be 1.
2054
2057
// Deal with the final bit of the exponent separately, since
2055
2058
// squaring the base afterwards is not necessary and may cause a
2056
2059
// needless overflow.
2057
- if exp == 1 {
2058
- acc = acc * base;
2059
- }
2060
-
2061
- acc
2060
+ acc * base
2062
2061
}
2063
2062
}
2064
2063
@@ -3295,6 +3294,9 @@ assert_eq!(", stringify!($SelfT), "::MAX.checked_pow(2), None);", $EndFeature, "
3295
3294
without modifying the original"]
3296
3295
#[ inline]
3297
3296
pub const fn checked_pow( self , mut exp: u32 ) -> Option <Self > {
3297
+ if exp == 0 {
3298
+ return Some ( 1 ) ;
3299
+ }
3298
3300
let mut base = self ;
3299
3301
let mut acc: Self = 1 ;
3300
3302
@@ -3306,14 +3308,12 @@ assert_eq!(", stringify!($SelfT), "::MAX.checked_pow(2), None);", $EndFeature, "
3306
3308
base = try_opt!( base. checked_mul( base) ) ;
3307
3309
}
3308
3310
3311
+ // since exp!=0, finally the exp must be 1.
3309
3312
// Deal with the final bit of the exponent separately, since
3310
3313
// squaring the base afterwards is not necessary and may cause a
3311
3314
// needless overflow.
3312
- if exp == 1 {
3313
- acc = try_opt!( acc. checked_mul( base) ) ;
3314
- }
3315
3315
3316
- Some ( acc)
3316
+ Some ( try_opt! ( acc. checked_mul ( base ) ) )
3317
3317
}
3318
3318
}
3319
3319
@@ -3704,6 +3704,9 @@ assert_eq!(3u8.wrapping_pow(6), 217);", $EndFeature, "
3704
3704
without modifying the original"]
3705
3705
#[ inline]
3706
3706
pub const fn wrapping_pow( self , mut exp: u32 ) -> Self {
3707
+ if exp == 0 {
3708
+ return 1 ;
3709
+ }
3707
3710
let mut base = self ;
3708
3711
let mut acc: Self = 1 ;
3709
3712
@@ -3715,14 +3718,11 @@ assert_eq!(3u8.wrapping_pow(6), 217);", $EndFeature, "
3715
3718
base = base. wrapping_mul( base) ;
3716
3719
}
3717
3720
3721
+ // since exp!=0, finally the exp must be 1.
3718
3722
// Deal with the final bit of the exponent separately, since
3719
3723
// squaring the base afterwards is not necessary and may cause a
3720
3724
// needless overflow.
3721
- if exp == 1 {
3722
- acc = acc. wrapping_mul( base) ;
3723
- }
3724
-
3725
- acc
3725
+ acc. wrapping_mul( base)
3726
3726
}
3727
3727
}
3728
3728
@@ -4029,6 +4029,9 @@ assert_eq!(3u8.overflowing_pow(6), (217, true));", $EndFeature, "
4029
4029
without modifying the original"]
4030
4030
#[ inline]
4031
4031
pub const fn overflowing_pow( self , mut exp: u32 ) -> ( Self , bool ) {
4032
+ if exp == 0 {
4033
+ return ( 1 , false ) ;
4034
+ }
4032
4035
let mut base = self ;
4033
4036
let mut acc: Self = 1 ;
4034
4037
let mut overflown = false ;
@@ -4047,16 +4050,14 @@ assert_eq!(3u8.overflowing_pow(6), (217, true));", $EndFeature, "
4047
4050
overflown |= r. 1 ;
4048
4051
}
4049
4052
4053
+ // since exp!=0, finally the exp must be 1.
4050
4054
// Deal with the final bit of the exponent separately, since
4051
4055
// squaring the base afterwards is not necessary and may cause a
4052
4056
// needless overflow.
4053
- if exp == 1 {
4054
- r = acc. overflowing_mul( base) ;
4055
- acc = r. 0 ;
4056
- overflown |= r. 1 ;
4057
- }
4057
+ r = acc. overflowing_mul( base) ;
4058
+ r. 1 |= overflown;
4058
4059
4059
- ( acc , overflown )
4060
+ r
4060
4061
}
4061
4062
}
4062
4063
@@ -4077,6 +4078,9 @@ Basic usage:
4077
4078
#[ inline]
4078
4079
#[ rustc_inherit_overflow_checks]
4079
4080
pub const fn pow( self , mut exp: u32 ) -> Self {
4081
+ if exp == 0 {
4082
+ return 1 ;
4083
+ }
4080
4084
let mut base = self ;
4081
4085
let mut acc = 1 ;
4082
4086
@@ -4088,14 +4092,11 @@ Basic usage:
4088
4092
base = base * base;
4089
4093
}
4090
4094
4095
+ // since exp!=0, finally the exp must be 1.
4091
4096
// Deal with the final bit of the exponent separately, since
4092
4097
// squaring the base afterwards is not necessary and may cause a
4093
4098
// needless overflow.
4094
- if exp == 1 {
4095
- acc = acc * base;
4096
- }
4097
-
4098
- acc
4099
+ acc * base
4099
4100
}
4100
4101
}
4101
4102
0 commit comments