2012-12-03 16:48:01 -08: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.
|
|
|
|
|
2012-09-19 16:52:32 -07:00
|
|
|
//! An interface for numeric types
|
2013-01-24 21:09:58 +01:00
|
|
|
use cmp::Eq;
|
|
|
|
use option::{None, Option, Some};
|
2012-06-07 17:25:54 -07:00
|
|
|
|
2012-09-28 12:30:11 -07:00
|
|
|
pub trait Num {
|
2012-07-31 10:27:51 -07:00
|
|
|
// FIXME: Trait composition. (#2616)
|
2013-01-30 19:42:06 -08:00
|
|
|
pure fn add(&self, other: &Self) -> Self;
|
|
|
|
pure fn sub(&self, other: &Self) -> Self;
|
|
|
|
pure fn mul(&self, other: &Self) -> Self;
|
|
|
|
pure fn div(&self, other: &Self) -> Self;
|
|
|
|
pure fn modulo(&self, other: &Self) -> Self;
|
|
|
|
pure fn neg(&self) -> Self;
|
2012-06-07 17:25:54 -07:00
|
|
|
|
2012-12-05 19:22:48 -08:00
|
|
|
pure fn to_int(&self) -> int;
|
2013-01-30 19:42:06 -08:00
|
|
|
static pure fn from_int(n: int) -> Self;
|
2012-06-07 17:25:54 -07:00
|
|
|
}
|
2012-12-20 07:14:38 -08:00
|
|
|
|
2013-01-25 16:57:39 -08:00
|
|
|
pub trait IntConvertible {
|
|
|
|
pure fn to_int(&self) -> int;
|
2013-01-30 19:42:06 -08:00
|
|
|
static pure fn from_int(n: int) -> Self;
|
2013-01-25 16:57:39 -08:00
|
|
|
}
|
|
|
|
|
2012-12-20 07:14:38 -08:00
|
|
|
pub trait Zero {
|
2013-01-30 19:42:06 -08:00
|
|
|
static pure fn zero() -> Self;
|
2012-12-20 07:14:38 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
pub trait One {
|
2013-01-30 19:42:06 -08:00
|
|
|
static pure fn one() -> Self;
|
2012-12-20 07:14:38 -08:00
|
|
|
}
|
2013-01-27 03:05:20 +01:00
|
|
|
|
|
|
|
pub trait Round {
|
|
|
|
pure fn round(&self, mode: RoundMode) -> self;
|
|
|
|
|
|
|
|
pure fn floor(&self) -> self;
|
|
|
|
pure fn ceil(&self) -> self;
|
|
|
|
pure fn fract(&self) -> self;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub enum RoundMode {
|
|
|
|
RoundDown,
|
|
|
|
RoundUp,
|
|
|
|
RoundToZero,
|
|
|
|
RoundFromZero
|
|
|
|
}
|
2013-01-24 21:09:58 +01:00
|
|
|
|
|
|
|
pub trait ToStrRadix {
|
|
|
|
pub pure fn to_str_radix(&self, radix: uint) -> ~str;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait FromStrRadix {
|
|
|
|
static pub pure fn from_str_radix(str: &str, radix: uint) -> Option<self>;
|
2013-01-21 00:40:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Generic math functions:
|
|
|
|
|
|
|
|
/// Dynamically calculates the value `inf` (`1/0`).
|
|
|
|
/// Can fail on integer types.
|
|
|
|
#[inline(always)]
|
|
|
|
pub pure fn infinity<T: Num One Zero>() -> T {
|
|
|
|
let _0: T = Zero::zero();
|
|
|
|
let _1: T = One::one();
|
|
|
|
_1 / _0
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Dynamically calculates the value `-inf` (`-1/0`).
|
|
|
|
/// Can fail on integer types.
|
|
|
|
#[inline(always)]
|
|
|
|
pub pure fn neg_infinity<T: Num One Zero>() -> T {
|
|
|
|
let _0: T = Zero::zero();
|
|
|
|
let _1: T = One::one();
|
|
|
|
- _1 / _0
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Dynamically calculates the value `NaN` (`0/0`).
|
|
|
|
/// Can fail on integer types.
|
|
|
|
#[inline(always)]
|
|
|
|
pub pure fn NaN<T: Num Zero>() -> T {
|
|
|
|
let _0: T = Zero::zero();
|
|
|
|
_0 / _0
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns `true` if `num` has the value `inf` (`1/0`).
|
|
|
|
/// Can fail on integer types.
|
|
|
|
#[inline(always)]
|
|
|
|
pub pure fn is_infinity<T: Num One Zero Eq>(num: &T) -> bool {
|
|
|
|
(*num) == (infinity::<T>())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns `true` if `num` has the value `-inf` (`-1/0`).
|
|
|
|
/// Can fail on integer types.
|
|
|
|
#[inline(always)]
|
|
|
|
pub pure fn is_neg_infinity<T: Num One Zero Eq>(num: &T) -> bool {
|
|
|
|
(*num) == (neg_infinity::<T>())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns `true` if `num` has the value `NaN` (is not equal to itself).
|
|
|
|
#[inline(always)]
|
|
|
|
pub pure fn is_NaN<T: Num Eq>(num: &T) -> bool {
|
|
|
|
(*num) != (*num)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns `true` if `num` has the value `-0` (`1/num == -1/0`).
|
|
|
|
/// Can fail on integer types.
|
|
|
|
#[inline(always)]
|
|
|
|
pub pure fn is_neg_zero<T: Num One Zero Eq>(num: &T) -> bool {
|
|
|
|
let _1: T = One::one();
|
|
|
|
let _0: T = Zero::zero();
|
|
|
|
*num == _0 && is_neg_infinity(&(_1 / *num))
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Calculates a power to a given radix, optimized for uint `pow` and `radix`.
|
|
|
|
*
|
|
|
|
* Returns `radix^pow` as `T`.
|
|
|
|
*
|
|
|
|
* Note:
|
|
|
|
* Also returns `1` for `0^0`, despite that technically being an
|
|
|
|
* undefined number. The Reason for this is twofold:
|
|
|
|
* - If code written to use this function cares about that special case, it's
|
|
|
|
* probably going to catch it before making the call.
|
|
|
|
* - If code written to use this function doesn't care about it, it's
|
|
|
|
* probably assuming that `x^0` always equals `1`.
|
|
|
|
*/
|
|
|
|
pub pure fn pow_with_uint<T: Num One Zero>(radix: uint, pow: uint) -> T {
|
|
|
|
let _0: T = Zero::zero();
|
|
|
|
let _1: T = One::one();
|
|
|
|
|
|
|
|
if pow == 0u { return _1; }
|
|
|
|
if radix == 0u { return _0; }
|
|
|
|
let mut my_pow = pow;
|
|
|
|
let mut total = _1;
|
|
|
|
let mut multiplier = Num::from_int(radix as int);
|
|
|
|
while (my_pow > 0u) {
|
|
|
|
if my_pow % 2u == 1u {
|
|
|
|
total *= multiplier;
|
|
|
|
}
|
|
|
|
my_pow /= 2u;
|
|
|
|
multiplier *= multiplier;
|
|
|
|
}
|
|
|
|
total
|
2013-01-24 21:09:58 +01:00
|
|
|
}
|