File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -3000,8 +3000,8 @@ impl BigInt {
3000
3000
( self . sign , self . data . to_u64_digits ( ) )
3001
3001
}
3002
3002
3003
- /// Returns the `u32 ` digits representation of the `BigUint` ordered least significant digit
3004
- /// first.
3003
+ /// Returns an iterator of `u64 ` digits representation of the `BigUint` ordered least
3004
+ /// significant digit first.
3005
3005
///
3006
3006
/// # Examples
3007
3007
///
@@ -3019,8 +3019,8 @@ impl BigInt {
3019
3019
self . data . iter_u32_digits ( )
3020
3020
}
3021
3021
3022
- /// Returns the `u64` digits representation of the `BigUint` ordered least significant digit
3023
- /// first.
3022
+ /// Returns an iterator of `u64` digits representation of the `BigUint` ordered least
3023
+ /// significant digit first.
3024
3024
///
3025
3025
/// # Examples
3026
3026
///
Original file line number Diff line number Diff line change @@ -2765,8 +2765,8 @@ impl BigUint {
2765
2765
self . iter_u64_digits ( ) . collect ( )
2766
2766
}
2767
2767
2768
- /// Returns the `u32` digits representation of the `BigUint` ordered least significant digit
2769
- /// first.
2768
+ /// Returns an iterator of `u32` digits representation of the `BigUint` ordered least
2769
+ /// significant digit first.
2770
2770
///
2771
2771
/// # Examples
2772
2772
///
@@ -2783,8 +2783,8 @@ impl BigUint {
2783
2783
IterU32Digits :: new ( self . data . as_slice ( ) )
2784
2784
}
2785
2785
2786
- /// Returns the `u32 ` digits representation of the `BigUint` ordered least significant digit
2787
- /// first.
2786
+ /// Returns an iterator of `u64 ` digits representation of the `BigUint` ordered least
2787
+ /// significant digit first.
2788
2788
///
2789
2789
/// # Examples
2790
2790
///
You can’t perform that action at this time.
0 commit comments