Primitive Type u64 [-]  [+]

Operations and constants for unsigned 64-bits integer (u64 type)

Trait Implementations

impl Int for u64

fn zero() -> u64

fn one() -> u64

fn min_value() -> u64

fn max_value() -> u64

fn count_ones(self) -> uint

fn leading_zeros(self) -> uint

fn trailing_zeros(self) -> uint

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

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

fn swap_bytes(self) -> u64

fn checked_add(self, other: u64) -> Option<u64>

fn checked_sub(self, other: u64) -> Option<u64>

fn checked_mul(self, other: u64) -> Option<u64>

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

fn count_zeros(self) -> uint

fn from_be(x: Self) -> Self

fn from_le(x: Self) -> Self

fn to_be(self) -> Self

fn to_le(self) -> Self

fn saturating_add(self, other: Self) -> Self

fn saturating_sub(self, other: Self) -> Self

fn pow(self, exp: uint) -> Self

impl UnsignedInt for u64

fn is_power_of_two(self) -> bool

fn next_power_of_two(self) -> Self

fn checked_next_power_of_two(self) -> Option<Self>

impl ToPrimitive for 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_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>

impl FromPrimitive for u64

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

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

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

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

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

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

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

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

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

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

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

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

impl NumCast for u64

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

impl FromStr for u64

fn from_str(src: &str) -> Option<u64>

impl FromStrRadix for u64

fn from_str_radix(src: &str, radix: uint) -> Option<u64>

impl Num for u64

impl Unsigned for u64

impl Primitive for u64

impl Zero for u64

fn zero() -> u64

fn is_zero(&self) -> bool

impl One for u64

fn one() -> u64

impl Bounded for u64

fn min_value() -> u64

fn max_value() -> u64

impl Zeroable for u64

impl Add<u64, u64> for u64

fn add(self, other: u64) -> u64

impl Sub<u64, u64> for u64

fn sub(self, other: u64) -> u64

impl Mul<u64, u64> for u64

fn mul(self, other: u64) -> u64

impl Div<u64, u64> for u64

fn div(self, other: u64) -> u64

impl Rem<u64, u64> for u64

fn rem(self, other: u64) -> u64

impl Neg<u64> for u64

fn neg(self) -> u64

impl Not<u64> for u64

fn not(self) -> u64

impl BitAnd<u64, u64> for u64

fn bitand(self, rhs: u64) -> u64

impl BitOr<u64, u64> for u64

fn bitor(self, rhs: u64) -> u64

impl BitXor<u64, u64> for u64

fn bitxor(self, other: u64) -> u64

impl Shl<uint, u64> for u64

fn shl(self, other: uint) -> u64

impl Shr<uint, u64> for u64

fn shr(self, other: uint) -> u64

impl PartialEq for u64

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

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

impl Eq for u64

impl PartialOrd for u64

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

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

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

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

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

impl Ord for u64

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

impl Clone for u64

fn clone(&self) -> u64

Return a deep copy of the value.

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

impl Default for u64

fn default() -> u64

impl Step for u64

fn step(&mut self)

fn step_back(&mut self)

fn steps_between(_a: &u64, _b: &u64) -> Option<uint>

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

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

impl Show for u64

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

impl Binary for u64

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

impl Octal for u64

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

impl LowerHex for u64

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

impl UpperHex for u64

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