mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-15 12:39:31 +03:00
f78cdcb636
This removes most explicit uses of the + argument mode. Pending a snapshot, I had to remove the forbid(deprecated_modes) pragma from a bunch of files. I'll put it back! + mode still has to be used in a few places for functions that get moved (see task.rs) The changes outside core and std are due to the to_bytes trait and making the compiler (with legacy modes on) agree with the libraries (with legacy modes off) about modes.
83 lines
1.2 KiB
Rust
83 lines
1.2 KiB
Rust
// Core operators and kinds.
|
|
|
|
#[lang="const"]
|
|
pub trait Const {
|
|
// Empty.
|
|
}
|
|
|
|
#[lang="copy"]
|
|
pub trait Copy {
|
|
// Empty.
|
|
}
|
|
|
|
#[lang="send"]
|
|
pub trait Send {
|
|
// Empty.
|
|
}
|
|
|
|
#[lang="owned"]
|
|
pub trait Owned {
|
|
// 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;
|
|
}
|
|
|
|
#[lang="neg"]
|
|
pub trait Neg<Result> {
|
|
pure fn neg() -> Result;
|
|
}
|
|
|
|
#[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;
|
|
}
|
|
|
|
#[lang="index"]
|
|
pub trait Index<Index,Result> {
|
|
pure fn index(index: Index) -> Result;
|
|
}
|
|
|