Primitive Type i64Unstable

Operations and constants for signed 64-bits integers (i64 type)

Trait Implementations

impl FromStr for i64

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

impl FromStrRadix for i64

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

impl ToStrRadix for i64

fn to_str_radix(&self, radix: uint) -> String

Convert to a string in a given base.

impl SampleRange for i64

fn construct_range(low: i64, high: i64) -> Range<i64>

fn sample_range<R: Rng>(r: &Range<i64>, rng: &mut R) -> i64

impl Rand for i64

fn rand<R: Rng>(rng: &mut R) -> i64

impl NumStrConv for i64

fn nan() -> Option<i64>

fn inf() -> Option<i64>

fn neg_inf() -> Option<i64>

fn neg_zero() -> Option<i64>

fn round_to_zero(&self) -> i64

fn fractional_part(&self) -> i64

impl Num for i64

impl Zero for i64

fn zero() -> i64

fn is_zero(&self) -> bool

impl One for i64

fn one() -> i64

impl Signed for i64

fn abs(&self) -> i64

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

fn signum(&self) -> i64

fn is_positive(&self) -> bool

fn is_negative(&self) -> bool

impl Bounded for i64

fn min_value() -> i64

fn max_value() -> i64

impl Primitive for i64

impl Int for i64

fn count_ones(self) -> i64

fn leading_zeros(self) -> i64

fn trailing_zeros(self) -> i64

fn rotate_left(self, n: uint) -> i64

fn rotate_right(self, n: uint) -> i64

fn swap_bytes(self) -> i64

fn count_zeros(self) -> i64

fn from_be(i64) -> i64

fn from_le(i64) -> i64

fn to_be(self) -> i64

fn to_le(self) -> i64

impl ToPrimitive for i64

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_i64(&self) -> Option<i64>

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_u64(&self) -> Option<u64>

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

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

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 i64

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

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

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

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

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

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

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

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

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

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

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

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

fn from_int(int) -> Option<i64>

fn from_i8(i8) -> Option<i64>

fn from_i16(i16) -> Option<i64>

fn from_i32(i32) -> Option<i64>

fn from_uint(uint) -> Option<i64>

fn from_u8(u8) -> Option<i64>

fn from_u16(u16) -> Option<i64>

fn from_u32(u32) -> Option<i64>

fn from_f32(f32) -> Option<i64>

fn from_f64(f64) -> Option<i64>

impl NumCast for i64

fn from<N: ToPrimitive>(n: N) -> Option<i64>

impl CheckedAdd for i64

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

impl CheckedSub for i64

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

impl CheckedMul for i64

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

impl CheckedDiv for i64

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

impl Add<i64, i64> for i64

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

impl Sub<i64, i64> for i64

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

impl Mul<i64, i64> for i64

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

impl Div<i64, i64> for i64

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

impl Rem<i64, i64> for i64

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

impl Neg<i64> for i64

fn neg(&self) -> i64

impl Not<i64> for i64

fn not(&self) -> i64

impl BitAnd<i64, i64> for i64

fn bitand(&self, rhs: &i64) -> i64

impl BitOr<i64, i64> for i64

fn bitor(&self, rhs: &i64) -> i64

impl BitXor<i64, i64> for i64

fn bitxor(&self, other: &i64) -> i64

impl Shl<i64, i64> for i64

fn shl(&self, other: &i64) -> i64

impl Shr<i64, i64> for i64

fn shr(&self, other: &i64) -> i64

impl PartialEq for i64

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

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

fn ne(&self, &i64) -> bool

impl Eq for i64

fn assert_receiver_is_total_eq(&self)

impl PartialOrd for i64

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

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

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

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

fn le(&self, &i64) -> bool

fn gt(&self, &i64) -> bool

fn ge(&self, &i64) -> bool

impl Ord for i64

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

impl Clone for i64

fn clone(&self) -> i64

Return a deep copy of the value.

fn clone_from(&mut self, &i64)

impl Default for i64

fn default() -> i64

impl Show for i64

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

impl Signed for i64

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

impl Binary for i64

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

impl Octal for i64

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

impl LowerHex for i64

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

impl UpperHex for i64

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

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

fn hash<S: Writer>(&self, state: &mut S)