Primitive Type uint
[-]
[+]
Operations and constants for architecture-sized unsigned integers (uint
type)
Operations and constants for architecture-sized unsigned integers (uint
type)
impl Int for uint
fn zero() -> uint
fn one() -> uint
fn min_value() -> uint
fn max_value() -> uint
fn count_ones(self) -> uint
fn leading_zeros(self) -> uint
fn trailing_zeros(self) -> uint
fn rotate_left(self, n: uint) -> uint
fn rotate_right(self, n: uint) -> uint
fn swap_bytes(self) -> uint
fn checked_add(self, other: uint) -> Option<uint>
fn checked_sub(self, other: uint) -> Option<uint>
fn checked_mul(self, other: uint) -> Option<uint>
fn checked_div(self, v: uint) -> Option<uint>
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 uint
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 uint
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 uint
fn from_int(n: int) -> Option<uint>
fn from_i8(n: i8) -> Option<uint>
fn from_i16(n: i16) -> Option<uint>
fn from_i32(n: i32) -> Option<uint>
fn from_i64(n: i64) -> Option<uint>
fn from_uint(n: uint) -> Option<uint>
fn from_u8(n: u8) -> Option<uint>
fn from_u16(n: u16) -> Option<uint>
fn from_u32(n: u32) -> Option<uint>
fn from_u64(n: u64) -> Option<uint>
fn from_f32(n: f32) -> Option<uint>
fn from_f64(n: f64) -> Option<uint>
impl NumCast for uint
fn from<N: ToPrimitive>(n: N) -> Option<uint>
impl FromStr for uint
impl FromStrRadix for uint
fn from_str_radix(src: &str, radix: uint) -> Option<uint>
impl Num for uint
impl Unsigned for uint
impl Primitive for uint
impl Zero for uint
impl One for uint
impl Bounded for uint
impl Zeroable for uint
impl Add<uint, uint> for uint
impl Sub<uint, uint> for uint
impl Mul<uint, uint> for uint
impl Div<uint, uint> for uint
impl Rem<uint, uint> for uint
impl Neg<uint> for uint
impl Not<uint> for uint
impl BitAnd<uint, uint> for uint
impl BitOr<uint, uint> for uint
impl BitXor<uint, uint> for uint
impl Shl<uint, uint> for uint
impl Shr<uint, uint> for uint
impl PartialEq for uint
impl Eq for uint
impl PartialOrd for uint
fn partial_cmp(&self, other: &uint) -> Option<Ordering>
fn lt(&self, other: &uint) -> bool
fn le(&self, other: &uint) -> bool
fn ge(&self, other: &uint) -> bool
fn gt(&self, other: &uint) -> bool
impl Ord for uint
impl Clone for uint
impl Default for uint
impl Step for uint
impl<S: Writer> Hash<S> for uint
fn hash(&self, state: &mut S)
impl Show for uint
impl Binary for uint
impl Octal for uint
impl LowerHex for uint
impl UpperHex for uint
Prefix searches with a type followed by a colon (e.g.
fn:
) to restrict the search to a given type.
Accepted types are: fn
, mod
,
struct
, enum
,
trait
, typedef
(or
tdef
).