rust/src/libcore/ops.rs

83 lines
1.2 KiB
Rust
Raw Normal View History

2012-07-25 21:03:55 -05:00
// Core operators and kinds.
#[lang="const"]
pub trait Const {
2012-07-25 21:03:55 -05:00
// Empty.
}
#[lang="copy"]
pub trait Copy {
2012-07-25 21:03:55 -05:00
// Empty.
}
#[lang="send"]
pub trait Send {
2012-07-25 21:03:55 -05:00
// Empty.
}
#[lang="owned"]
pub trait Owned {
2012-07-25 21:03:55 -05:00
// Empty.
}
#[lang="add"]
pub trait Add<RHS,Result> {
pure fn add(rhs: &RHS) -> Result;
}
#[lang="sub"]
pub trait Sub<RHS,Result> {
pure fn sub(rhs: &RHS) -> Result;
}
#[lang="mul"]
pub trait Mul<RHS,Result> {
pure fn mul(rhs: &RHS) -> Result;
}
#[lang="div"]
pub trait Div<RHS,Result> {
pure fn div(rhs: &RHS) -> Result;
}
#[lang="modulo"]
pub trait Modulo<RHS,Result> {
pure fn modulo(rhs: &RHS) -> Result;
}
2012-07-25 21:03:55 -05:00
#[lang="neg"]
pub trait Neg<Result> {
pure fn neg() -> Result;
2012-07-25 21:03:55 -05:00
}
#[lang="bitand"]
pub trait BitAnd<RHS,Result> {
pure fn bitand(rhs: &RHS) -> Result;
}
#[lang="bitor"]
pub trait BitOr<RHS,Result> {
pure fn bitor(rhs: &RHS) -> Result;
}
#[lang="bitxor"]
pub trait BitXor<RHS,Result> {
pure fn bitxor(rhs: &RHS) -> Result;
}
#[lang="shl"]
pub trait Shl<RHS,Result> {
pure fn shl(rhs: &RHS) -> Result;
}
#[lang="shr"]
pub trait Shr<RHS,Result> {
pure fn shr(rhs: &RHS) -> Result;
}
2012-07-25 21:03:55 -05:00
#[lang="index"]
pub trait Index<Index,Result> {
2012-09-25 20:27:45 -05:00
pure fn index(+index: Index) -> Result;
2012-07-25 21:03:55 -05:00
}