Struct num::bigint::BigIntExperimental [-]  [+] [src]

pub struct BigInt {
    // some fields omitted
}

A big signed integer type.

Methods

impl BigInt

fn new(sign: Sign, digits: Vec<BigDigit>) -> BigInt

Creates and initializes a BigInt.

The digits are be in base 232.

fn from_biguint(sign: Sign, data: BigUint) -> BigInt

Creates and initializes a BigInt.

The digits are be in base 232.

fn from_slice(sign: Sign, slice: &[BigDigit]) -> BigInt

Creates and initializes a BigInt.

fn parse_bytes(buf: &[u8], radix: uint) -> Option<BigInt>

Creates and initializes a BigInt.

fn to_biguint(&self) -> Option<BigUint>

Converts this BigInt into a BigUint, if it's not negative.

fn checked_add(&self, v: &BigInt) -> Option<BigInt>

fn checked_sub(&self, v: &BigInt) -> Option<BigInt>

fn checked_mul(&self, v: &BigInt) -> Option<BigInt>

fn checked_div(&self, v: &BigInt) -> Option<BigInt>

Trait Implementations

impl ToBigUint for BigInt

fn to_biguint(&self) -> Option<BigUint>

impl PartialEq for BigInt

fn eq(&self, other: &BigInt) -> bool

fn ne(&self, other: &Self) -> bool

impl Eq for BigInt

fn assert_receiver_is_total_eq(&self)

impl PartialOrd for BigInt

fn partial_cmp(&self, other: &BigInt) -> Option<Ordering>

fn lt(&self, other: &Self) -> bool

fn le(&self, other: &Self) -> bool

fn gt(&self, other: &Self) -> bool

fn ge(&self, other: &Self) -> bool

impl Ord for BigInt

fn cmp(&self, other: &BigInt) -> Ordering

impl Default for BigInt

fn default() -> BigInt

impl Show for BigInt

fn fmt(&self, f: &mut Formatter) -> Result

impl<S: Writer> Hash<S> for BigInt

fn hash(&self, state: &mut S)

impl FromStr for BigInt

fn from_str(s: &str) -> Option<BigInt>

impl Num for BigInt

impl Shl<uint, BigInt> for BigInt

fn shl(&self, rhs: &uint) -> BigInt

impl Shr<uint, BigInt> for BigInt

fn shr(&self, rhs: &uint) -> BigInt

impl Zero for BigInt

fn zero() -> BigInt

fn is_zero(&self) -> bool

impl One for BigInt

fn one() -> BigInt

impl Signed for BigInt

fn abs(&self) -> BigInt

fn abs_sub(&self, other: &BigInt) -> BigInt

fn signum(&self) -> BigInt

fn is_positive(&self) -> bool

fn is_negative(&self) -> bool

impl Add<BigInt, BigInt> for BigInt

fn add(&self, other: &BigInt) -> BigInt

impl Sub<BigInt, BigInt> for BigInt

fn sub(&self, other: &BigInt) -> BigInt

impl Mul<BigInt, BigInt> for BigInt

fn mul(&self, other: &BigInt) -> BigInt

impl Div<BigInt, BigInt> for BigInt

fn div(&self, other: &BigInt) -> BigInt

impl Rem<BigInt, BigInt> for BigInt

fn rem(&self, other: &BigInt) -> BigInt

impl Neg<BigInt> for BigInt

fn neg(&self) -> BigInt

impl CheckedAdd for BigInt

fn checked_add(&self, v: &BigInt) -> Option<BigInt>

impl CheckedSub for BigInt

fn checked_sub(&self, v: &BigInt) -> Option<BigInt>

impl CheckedMul for BigInt

fn checked_mul(&self, v: &BigInt) -> Option<BigInt>

impl CheckedDiv for BigInt

fn checked_div(&self, v: &BigInt) -> Option<BigInt>

impl Integer for BigInt

fn div_rem(&self, other: &BigInt) -> (BigInt, BigInt)

fn div_floor(&self, other: &BigInt) -> BigInt

fn mod_floor(&self, other: &BigInt) -> BigInt

fn div_mod_floor(&self, other: &BigInt) -> (BigInt, BigInt)

fn gcd(&self, other: &BigInt) -> BigInt

Calculates the Greatest Common Divisor (GCD) of the number and other.

The result is always positive.

fn lcm(&self, other: &BigInt) -> BigInt

Calculates the Lowest Common Multiple (LCM) of the number and other.

fn divides(&self, other: &BigInt) -> bool

Deprecated, use is_multiple_of instead.

fn is_multiple_of(&self, other: &BigInt) -> bool

Returns true if the number is a multiple of other.

fn is_even(&self) -> bool

Returns true if the number is divisible by 2.

fn is_odd(&self) -> bool

Returns true if the number is not divisible by 2.

impl ToPrimitive for BigInt

fn to_i64(&self) -> Option<i64>

fn to_u64(&self) -> Option<u64>

fn to_int(&self) -> Option<int>

fn to_i8(&self) -> Option<i8>

fn to_i16(&self) -> Option<i16>

fn to_i32(&self) -> Option<i32>

fn to_uint(&self) -> Option<uint>

fn to_u8(&self) -> Option<u8>

fn to_u16(&self) -> Option<u16>

fn to_u32(&self) -> Option<u32>

fn to_f32(&self) -> Option<f32>

fn to_f64(&self) -> Option<f64>

impl FromPrimitive for BigInt

fn from_i64(n: i64) -> Option<BigInt>

fn from_u64(n: u64) -> Option<BigInt>

fn from_int(n: int) -> Option<Self>

fn from_i8(n: i8) -> Option<Self>

fn from_i16(n: i16) -> Option<Self>

fn from_i32(n: i32) -> Option<Self>

fn from_uint(n: uint) -> Option<Self>

fn from_u8(n: u8) -> Option<Self>

fn from_u16(n: u16) -> Option<Self>

fn from_u32(n: u32) -> Option<Self>

fn from_f32(n: f32) -> Option<Self>

fn from_f64(n: f64) -> Option<Self>

impl ToBigInt for BigInt

fn to_bigint(&self) -> Option<BigInt>

impl FromStrRadix for BigInt

fn from_str_radix(s: &str, radix: uint) -> Option<BigInt>

Creates and initializes a BigInt.

Derived Implementations

impl<__D: Decoder<__E>, __E> Decodable<__D, __E> for BigInt

fn decode(__arg_0: &mut __D) -> Result<BigInt, __E>

impl<__S: Encoder<__E>, __E> Encodable<__S, __E> for BigInt

fn encode(&self, __arg_0: &mut __S) -> Result<(), __E>

impl Clone for BigInt

fn clone(&self) -> BigInt

fn clone_from(&mut self, source: &Self)