2012-12-03 18:48:01 -06: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 18:52:32 -05:00
|
|
|
//! An interface for numeric types
|
2012-06-07 19:25:54 -05:00
|
|
|
|
2012-09-28 14:30:11 -05:00
|
|
|
pub trait Num {
|
2012-07-31 12:27:51 -05:00
|
|
|
// FIXME: Trait composition. (#2616)
|
2013-01-30 21:42:06 -06: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 19:25:54 -05:00
|
|
|
|
2012-12-05 21:22:48 -06:00
|
|
|
pure fn to_int(&self) -> int;
|
2013-01-30 21:42:06 -06:00
|
|
|
static pure fn from_int(n: int) -> Self;
|
2012-06-07 19:25:54 -05:00
|
|
|
}
|
2012-12-20 09:14:38 -06:00
|
|
|
|
2013-01-25 18:57:39 -06:00
|
|
|
pub trait IntConvertible {
|
|
|
|
pure fn to_int(&self) -> int;
|
2013-01-30 21:42:06 -06:00
|
|
|
static pure fn from_int(n: int) -> Self;
|
2013-01-25 18:57:39 -06:00
|
|
|
}
|
|
|
|
|
2012-12-20 09:14:38 -06:00
|
|
|
pub trait Zero {
|
2013-01-30 21:42:06 -06:00
|
|
|
static pure fn zero() -> Self;
|
2012-12-20 09:14:38 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pub trait One {
|
2013-01-30 21:42:06 -06:00
|
|
|
static pure fn one() -> Self;
|
2012-12-20 09:14:38 -06:00
|
|
|
}
|