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
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
impl Default for BigInt
impl Show for BigInt
impl<S: Writer> Hash<S> for BigInt
fn hash(&self, state: &mut S)
impl FromStr for BigInt
impl Num for BigInt
impl Shl<uint, BigInt> for BigInt
impl Shr<uint, BigInt> for BigInt
impl Zero for BigInt
impl One for 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
impl Sub<BigInt, BigInt> for BigInt
impl Mul<BigInt, BigInt> for BigInt
impl Div<BigInt, BigInt> for BigInt
impl Rem<BigInt, BigInt> for BigInt
impl Neg<BigInt> for 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
impl FromStrRadix for BigInt
fn from_str_radix(s: &str, radix: uint) -> Option<BigInt>
Creates and initializes a BigInt.