about summary refs log tree commit diff
path: root/src/libextra/num
diff options
context:
space:
mode:
authorBrendan Zabarauskas <bjzaba@yahoo.com.au>2014-01-15 11:32:04 +1100
committerBrendan Zabarauskas <bjzaba@yahoo.com.au>2014-01-16 11:51:33 +1100
commit1dd6906db2e6749bc3f113068e7493070b276feb (patch)
treebf4ce1a1c06bceadb28c70a4d522c9a5b9921738 /src/libextra/num
parent149fc76698318f8f7cdfaa37a818e347721764e7 (diff)
Merge Bitwise and BitCount traits and remove from prelude, along with Bounded
One less trait in std::num, and three less exported in the prelude.
Diffstat (limited to 'src/libextra/num')
-rw-r--r--src/libextra/num/bigint.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libextra/num/bigint.rs b/src/libextra/num/bigint.rs
index ed731298b52..8f491e836b8 100644
--- a/src/libextra/num/bigint.rs
+++ b/src/libextra/num/bigint.rs
@@ -22,7 +22,7 @@ A `BigInt` is a combination of `BigUint` and `Sign`.
 use std::cmp::{Eq, Ord, TotalEq, TotalOrd, Ordering, Less, Equal, Greater};
 use std::num;
 use std::num::{Zero, One, ToStrRadix, FromStrRadix, Orderable};
-use std::num::{ToPrimitive, FromPrimitive};
+use std::num::{Bitwise, ToPrimitive, FromPrimitive};
 use std::rand::Rng;
 use std::str;
 use std::uint;