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 @@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
5
5
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
- refs/heads/try2: a390b5dd0320957b00177c8ae837c51ceb737fef
8
+ refs/heads/try2: 655487b59666afe5a5c9e0a305c27be342b8fa46
9
9
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
10
10
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
11
11
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
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