rust/src/libcore/num.rs
2012-06-14 18:21:17 -07:00

16 lines
448 B
Rust

#[doc="An interface for numbers."]
iface num {
// FIXME: Cross-crate overloading doesn't work yet. (#2615)
// FIXME: Interface inheritance. (#2616)
fn add(&&other: self) -> self;
fn sub(&&other: self) -> self;
fn mul(&&other: self) -> self;
fn div(&&other: self) -> self;
fn modulo(&&other: self) -> self;
fn neg() -> self;
fn to_int() -> int;
fn from_int(n: int) -> self; // TODO: Static functions.
}