File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: a390b5dd0320957b00177c8ae837c51ceb737fef
2
+ refs/heads/master: 655487b59666afe5a5c9e0a305c27be342b8fa46
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: ec0258a381b88b5574e3f8ce72ae553ac3a574b7
5
5
refs/heads/try: 7c6c492fb2af9a85f21ff952942df3523b22fd17
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ A `BigInt` is a combination of `BigUint` and `Sign`.
19
19
use Integer ;
20
20
21
21
use std:: cmp;
22
+ use std:: default:: Default ;
22
23
use std:: fmt;
23
24
use std:: from_str:: FromStr ;
24
25
use std:: num:: CheckedDiv ;
@@ -112,6 +113,11 @@ impl TotalOrd for BigUint {
112
113
}
113
114
}
114
115
116
+ impl Default for BigUint {
117
+ #[ inline]
118
+ fn default ( ) -> BigUint { BigUint :: new ( Vec :: new ( ) ) }
119
+ }
120
+
115
121
impl fmt:: Show for BigUint {
116
122
fn fmt ( & self , f : & mut fmt:: Formatter ) -> fmt:: Result {
117
123
write ! ( f. buf, "{}" , self . to_str_radix( 10 ) )
@@ -830,6 +836,11 @@ impl TotalOrd for BigInt {
830
836
}
831
837
}
832
838
839
+ impl Default for BigInt {
840
+ #[ inline]
841
+ fn default ( ) -> BigInt { BigInt :: new ( Zero , Vec :: new ( ) ) }
842
+ }
843
+
833
844
impl fmt:: Show for BigInt {
834
845
fn fmt ( & self , f : & mut fmt:: Formatter ) -> fmt:: Result {
835
846
write ! ( f. buf, "{}" , self . to_str_radix( 10 ) )
You can’t perform that action at this time.
0 commit comments