libnum: Make RandBigInt trait public

Closes #12383.
This commit is contained in:
Eduard Bopp 2014-02-19 14:01:50 +01:00
parent d2f265d195
commit cb3a419d97

View file

@ -1261,7 +1261,7 @@ impl FromStrRadix for BigInt {
}
}
trait RandBigInt {
pub trait RandBigInt {
/// Generate a random `BigUint` of the given bit size.
fn gen_biguint(&mut self, bit_size: uint) -> BigUint;