File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2981,7 +2981,7 @@ impl BigInt {
2981
2981
( self . sign , self . data . to_u32_digits ( ) )
2982
2982
}
2983
2983
2984
- /// Returns the sign and the `u32 ` digits representation of the `BigInt` ordered least
2984
+ /// Returns the sign and the `u64 ` digits representation of the `BigInt` ordered least
2985
2985
/// significant digit first.
2986
2986
///
2987
2987
/// # Examples
@@ -3015,11 +3015,11 @@ impl BigInt {
3015
3015
/// assert_eq!(BigInt::from(112500000000i64).iter_u32_digits().collect::<Vec<u32>>(), vec![830850304, 26]);
3016
3016
/// ```
3017
3017
#[ inline]
3018
- pub fn iter_u32_digits < ' a > ( & ' a self ) -> IterU32Digits < ' a > {
3018
+ pub fn iter_u32_digits ( & self ) -> IterU32Digits < ' _ > {
3019
3019
self . data . iter_u32_digits ( )
3020
3020
}
3021
3021
3022
- /// Returns the `u32 ` digits representation of the `BigUint` ordered least significant digit
3022
+ /// Returns the `u64 ` digits representation of the `BigUint` ordered least significant digit
3023
3023
/// first.
3024
3024
///
3025
3025
/// # Examples
Original file line number Diff line number Diff line change @@ -2312,7 +2312,7 @@ impl<'a> IterU32Digits<'a> {
2312
2312
}
2313
2313
}
2314
2314
#[ cfg( u64_digit) ]
2315
- impl < ' a > Iterator for IterU32Digits < ' a > {
2315
+ impl Iterator for IterU32Digits < ' _ > {
2316
2316
type Item = u32 ;
2317
2317
fn next ( & mut self ) -> Option < u32 > {
2318
2318
match self . data . split_first ( ) {
@@ -2747,7 +2747,7 @@ impl BigUint {
2747
2747
self . iter_u32_digits ( ) . collect ( )
2748
2748
}
2749
2749
2750
- /// Returns the `u32 ` digits representation of the `BigUint` ordered least significant digit
2750
+ /// Returns the `u64 ` digits representation of the `BigUint` ordered least significant digit
2751
2751
/// first.
2752
2752
///
2753
2753
/// # Examples
You can’t perform that action at this time.
0 commit comments