2013-05-12 20:14:40 -05:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2013-12-24 10:08:28 -06:00
|
|
|
//! Operations and constants for signed 8-bits integers (`i8` type)
|
2013-05-12 20:14:40 -05:00
|
|
|
|
2014-03-21 20:05:05 -05:00
|
|
|
#![allow(non_uppercase_statics)]
|
2013-11-29 13:30:31 -06:00
|
|
|
|
|
|
|
use prelude::*;
|
|
|
|
|
|
|
|
use default::Default;
|
2014-02-22 19:29:42 -06:00
|
|
|
use from_str::FromStr;
|
2014-01-14 18:32:04 -06:00
|
|
|
use num::{Bitwise, Bounded, CheckedAdd, CheckedSub, CheckedMul};
|
2013-11-29 13:30:31 -06:00
|
|
|
use num::{CheckedDiv, Zero, One, strconv};
|
|
|
|
use num::{ToStrRadix, FromStrRadix};
|
2013-09-07 02:15:35 -05:00
|
|
|
use option::{Option, Some, None};
|
2013-11-29 13:30:31 -06:00
|
|
|
use str;
|
2014-02-16 01:49:08 -06:00
|
|
|
use intrinsics;
|
2013-05-12 20:14:40 -05:00
|
|
|
|
|
|
|
int_module!(i8, 8)
|
|
|
|
|
2014-01-14 18:32:04 -06:00
|
|
|
impl Bitwise for i8 {
|
2014-02-16 17:12:10 -06:00
|
|
|
/// Returns the number of ones in the binary representation of the number.
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2014-04-14 05:04:14 -05:00
|
|
|
fn count_ones(&self) -> i8 { unsafe { intrinsics::ctpop8(*self as u8) as i8 } }
|
2013-05-12 20:14:40 -05:00
|
|
|
|
2014-02-16 17:12:10 -06:00
|
|
|
/// Returns the number of leading zeros in the in the binary representation
|
|
|
|
/// of the number.
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2014-04-14 05:04:14 -05:00
|
|
|
fn leading_zeros(&self) -> i8 { unsafe { intrinsics::ctlz8(*self as u8) as i8 } }
|
2013-05-12 20:14:40 -05:00
|
|
|
|
2014-02-16 17:12:10 -06:00
|
|
|
/// Returns the number of trailing zeros in the in the binary representation
|
|
|
|
/// of the number.
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2014-04-14 05:04:14 -05:00
|
|
|
fn trailing_zeros(&self) -> i8 { unsafe { intrinsics::cttz8(*self as u8) as i8 } }
|
2013-05-12 20:14:40 -05:00
|
|
|
}
|
2013-09-07 02:15:35 -05:00
|
|
|
|
|
|
|
impl CheckedAdd for i8 {
|
|
|
|
#[inline]
|
|
|
|
fn checked_add(&self, v: &i8) -> Option<i8> {
|
|
|
|
unsafe {
|
|
|
|
let (x, y) = intrinsics::i8_add_with_overflow(*self, *v);
|
|
|
|
if y { None } else { Some(x) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl CheckedSub for i8 {
|
|
|
|
#[inline]
|
|
|
|
fn checked_sub(&self, v: &i8) -> Option<i8> {
|
|
|
|
unsafe {
|
|
|
|
let (x, y) = intrinsics::i8_sub_with_overflow(*self, *v);
|
|
|
|
if y { None } else { Some(x) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl CheckedMul for i8 {
|
|
|
|
#[inline]
|
|
|
|
fn checked_mul(&self, v: &i8) -> Option<i8> {
|
|
|
|
unsafe {
|
|
|
|
let (x, y) = intrinsics::i8_mul_with_overflow(*self, *v);
|
|
|
|
if y { None } else { Some(x) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|