We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a2f65f commit 5ce0795Copy full SHA for 5ce0795
src/libstd/num/bigint.rs
@@ -144,6 +144,8 @@ impl FromStr for BigUint {
144
}
145
146
147
+impl Num for BigUint {}
148
+
149
impl Shl<uint, BigUint> for BigUint {
150
#[inline(always)]
151
fn shl(&self, rhs: &uint) -> BigUint {
@@ -788,6 +790,8 @@ impl FromStr for BigInt {
788
790
789
791
792
793
+impl Num for BigInt {}
794
795
impl Shl<uint, BigInt> for BigInt {
796
797
fn shl(&self, rhs: &uint) -> BigInt {
0 commit comments