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.
|
|
|
|
|
2013-09-26 07:54:48 -05:00
|
|
|
// So we don't have to document the actual methods on the traits.
|
2013-05-28 16:35:52 -05:00
|
|
|
#[allow(missing_doc)];
|
|
|
|
|
2013-09-26 07:54:48 -05:00
|
|
|
/*!
|
|
|
|
*
|
|
|
|
* Traits for the built-in operators. Implementing these traits allows you to get
|
2013-10-06 02:51:58 -05:00
|
|
|
* an effect similar to overloading operators.
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* The values for the right hand side of an operator are automatically
|
|
|
|
* borrowed, so `a + b` is sugar for `a.add(&b)`.
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
|
|
|
* All of these traits are imported by the prelude, so they are available in
|
|
|
|
* every Rust program.
|
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* # Example
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* This example creates a `Point` struct that implements `Add` and `Sub`, and then
|
|
|
|
* demonstrates adding and subtracting two `Point`s.
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* ```rust
|
|
|
|
* struct Point {
|
|
|
|
* x: int,
|
|
|
|
* y: int
|
|
|
|
* }
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* impl Add<Point, Point> for Point {
|
|
|
|
* fn add(&self, other: &Point) -> Point {
|
|
|
|
* Point {x: self.x + other.x, y: self.y + other.y}
|
|
|
|
* }
|
|
|
|
* }
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* impl Sub<Point, Point> for Point {
|
|
|
|
* fn sub(&self, other: &Point) -> Point {
|
|
|
|
* Point {x: self.x - other.x, y: self.y - other.y}
|
|
|
|
* }
|
|
|
|
* }
|
|
|
|
* fn main() {
|
|
|
|
* println(format!("{:?}", Point {x: 1, y: 0} + Point {x: 2, y: 3}));
|
|
|
|
* println(format!("{:?}", Point {x: 1, y: 0} - Point {x: 2, y: 3}));
|
|
|
|
* }
|
|
|
|
* ```
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* See the documentation for each trait for a minimum implementation that prints
|
|
|
|
* something to the screen.
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* The `Drop` trait is used to run some code when a value goes out of scope. This
|
|
|
|
* is sometimes called a 'destructor'.
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* # Example
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* A trivial implementation of `Drop`. The `drop` method is called when `_x` goes
|
|
|
|
* out of scope, and therefore `main` prints `Dropping!`.
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* ```rust
|
|
|
|
* struct HasDrop;
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* impl Drop for HasDrop {
|
|
|
|
* fn drop(&mut self) {
|
|
|
|
* println("Dropping!");
|
|
|
|
* }
|
|
|
|
* }
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* fn main() {
|
|
|
|
* let _x = HasDrop;
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
*/
|
2012-11-05 19:50:01 -06:00
|
|
|
#[lang="drop"]
|
|
|
|
pub trait Drop {
|
2013-09-16 20:18:07 -05:00
|
|
|
fn drop(&mut self);
|
2012-11-05 19:50:01 -06:00
|
|
|
}
|
|
|
|
|
2013-09-26 07:54:48 -05:00
|
|
|
/**
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
|
|
|
* The `Add` trait is used to specify the functionality of `+`.
|
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* # Example
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* A trivial implementation of `Add`. When `Foo + Foo` happens, it ends up
|
|
|
|
* calling `add`, and therefore, `main` prints `Adding!`.
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* ```rust
|
|
|
|
* struct Foo;
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* impl Add<Foo, Foo> for Foo {
|
|
|
|
* fn add(&self, _rhs: &Foo) -> Foo {
|
|
|
|
* println("Adding!");
|
|
|
|
* *self
|
|
|
|
* }
|
|
|
|
* }
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* fn main() {
|
|
|
|
* Foo + Foo;
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
*/
|
2012-11-28 15:51:50 -06:00
|
|
|
#[lang="add"]
|
|
|
|
pub trait Add<RHS,Result> {
|
2013-03-21 23:20:48 -05:00
|
|
|
fn add(&self, rhs: &RHS) -> Result;
|
2012-11-28 15:51:50 -06:00
|
|
|
}
|
|
|
|
|
2013-09-26 07:54:48 -05:00
|
|
|
/**
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
|
|
|
* The `Sub` trait is used to specify the functionality of `-`.
|
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* # Example
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* A trivial implementation of `Sub`. When `Foo - Foo` happens, it ends up
|
|
|
|
* calling `sub`, and therefore, `main` prints `Subtracting!`.
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
|
|
|
* ```rust
|
2013-09-26 07:54:48 -05:00
|
|
|
* struct Foo;
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* impl Sub<Foo, Foo> for Foo {
|
|
|
|
* fn sub(&self, _rhs: &Foo) -> Foo {
|
|
|
|
* println("Subtracting!");
|
|
|
|
* *self
|
|
|
|
* }
|
|
|
|
* }
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* fn main() {
|
|
|
|
* Foo - Foo;
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
*/
|
2012-09-19 20:00:26 -05:00
|
|
|
#[lang="sub"]
|
2012-09-28 14:30:11 -05:00
|
|
|
pub trait Sub<RHS,Result> {
|
2013-03-21 23:20:48 -05:00
|
|
|
fn sub(&self, rhs: &RHS) -> Result;
|
2012-09-19 20:00:26 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 07:54:48 -05:00
|
|
|
/**
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
|
|
|
* The `Mul` trait is used to specify the functionality of `*`.
|
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* # Example
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* A trivial implementation of `Mul`. When `Foo * Foo` happens, it ends up
|
|
|
|
* calling `mul`, and therefore, `main` prints `Multiplying!`.
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* ```rust
|
|
|
|
* struct Foo;
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* impl Mul<Foo, Foo> for Foo {
|
|
|
|
* fn mul(&self, _rhs: &Foo) -> Foo {
|
|
|
|
* println("Multiplying!");
|
|
|
|
* *self
|
|
|
|
* }
|
|
|
|
* }
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* fn main() {
|
|
|
|
* Foo * Foo;
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
*/
|
2012-09-19 20:00:26 -05:00
|
|
|
#[lang="mul"]
|
2012-09-28 14:30:11 -05:00
|
|
|
pub trait Mul<RHS,Result> {
|
2013-03-21 23:20:48 -05:00
|
|
|
fn mul(&self, rhs: &RHS) -> Result;
|
2012-09-19 20:00:26 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 07:54:48 -05:00
|
|
|
/**
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
|
|
|
* The `Div` trait is used to specify the functionality of `/`.
|
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* # Example
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* A trivial implementation of `Div`. When `Foo / Foo` happens, it ends up
|
|
|
|
* calling `div`, and therefore, `main` prints `Dividing!`.
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* ```
|
|
|
|
* struct Foo;
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* impl Div<Foo, Foo> for Foo {
|
|
|
|
* fn div(&self, _rhs: &Foo) -> Foo {
|
|
|
|
* println("Dividing!");
|
|
|
|
* *self
|
|
|
|
* }
|
|
|
|
* }
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* fn main() {
|
|
|
|
* Foo / Foo;
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
*/
|
2012-09-19 20:00:26 -05:00
|
|
|
#[lang="div"]
|
2012-09-28 14:30:11 -05:00
|
|
|
pub trait Div<RHS,Result> {
|
2013-03-21 23:20:48 -05:00
|
|
|
fn div(&self, rhs: &RHS) -> Result;
|
2012-09-19 20:00:26 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 07:54:48 -05:00
|
|
|
/**
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
|
|
|
* The `Rem` trait is used to specify the functionality of `%`.
|
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* # Example
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
|
|
|
* A trivial implementation of `Rem`. When `Foo % Foo` happens, it ends up
|
2013-09-26 07:54:48 -05:00
|
|
|
* calling `rem`, and therefore, `main` prints `Remainder-ing!`.
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* ```
|
|
|
|
* struct Foo;
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* impl Rem<Foo, Foo> for Foo {
|
|
|
|
* fn rem(&self, _rhs: &Foo) -> Foo {
|
|
|
|
* println("Remainder-ing!");
|
|
|
|
* *self
|
|
|
|
* }
|
|
|
|
* }
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* fn main() {
|
|
|
|
* Foo % Foo;
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
*/
|
2013-04-21 10:58:53 -05:00
|
|
|
#[lang="rem"]
|
|
|
|
pub trait Rem<RHS,Result> {
|
|
|
|
fn rem(&self, rhs: &RHS) -> Result;
|
|
|
|
}
|
2012-09-19 20:00:26 -05:00
|
|
|
|
2013-09-26 07:54:48 -05:00
|
|
|
/**
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
|
|
|
* The `Neg` trait is used to specify the functionality of unary `-`.
|
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* # Example
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
|
|
|
* A trivial implementation of `Neg`. When `-Foo` happens, it ends up calling
|
2013-09-26 07:54:48 -05:00
|
|
|
* `neg`, and therefore, `main` prints `Negating!`.
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* ```
|
|
|
|
* struct Foo;
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* impl Neg<Foo> for Foo {
|
|
|
|
* fn neg(&self) -> Foo {
|
|
|
|
* println("Negating!");
|
|
|
|
* *self
|
|
|
|
* }
|
|
|
|
* }
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* fn main() {
|
|
|
|
* -Foo;
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
*/
|
2012-07-25 21:03:55 -05:00
|
|
|
#[lang="neg"]
|
2012-09-28 14:30:11 -05:00
|
|
|
pub trait Neg<Result> {
|
2013-03-21 23:20:48 -05:00
|
|
|
fn neg(&self) -> Result;
|
2012-07-25 21:03:55 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 07:54:48 -05:00
|
|
|
/**
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
|
|
|
* The `Not` trait is used to specify the functionality of unary `!`.
|
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* # Example
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* A trivial implementation of `Not`. When `!Foo` happens, it ends up calling
|
|
|
|
* `not`, and therefore, `main` prints `Not-ing!`.
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* ```
|
|
|
|
* struct Foo;
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* impl Not<Foo> for Foo {
|
|
|
|
* fn not(&self) -> Foo {
|
|
|
|
* println("Not-ing!");
|
|
|
|
* *self
|
|
|
|
* }
|
|
|
|
* }
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* fn main() {
|
|
|
|
* !Foo;
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
*/
|
2013-01-11 11:16:58 -06:00
|
|
|
#[lang="not"]
|
|
|
|
pub trait Not<Result> {
|
2013-03-21 23:20:48 -05:00
|
|
|
fn not(&self) -> Result;
|
2013-01-11 11:16:58 -06:00
|
|
|
}
|
|
|
|
|
2013-09-26 07:54:48 -05:00
|
|
|
/**
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
|
|
|
* The `BitAnd` trait is used to specify the functionality of `&`.
|
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* # Example
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* A trivial implementation of `BitAnd`. When `Foo & Foo` happens, it ends up
|
|
|
|
* calling `bitand`, and therefore, `main` prints `Bitwise And-ing!`.
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* ```
|
|
|
|
* struct Foo;
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* impl BitAnd<Foo, Foo> for Foo {
|
|
|
|
* fn bitand(&self, _rhs: &Foo) -> Foo {
|
|
|
|
* println("Bitwise And-ing!");
|
|
|
|
* *self
|
|
|
|
* }
|
|
|
|
* }
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* fn main() {
|
|
|
|
* Foo & Foo;
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
*/
|
2012-09-19 20:00:26 -05:00
|
|
|
#[lang="bitand"]
|
2012-09-28 14:30:11 -05:00
|
|
|
pub trait BitAnd<RHS,Result> {
|
2013-03-21 23:20:48 -05:00
|
|
|
fn bitand(&self, rhs: &RHS) -> Result;
|
2012-09-19 20:00:26 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 07:54:48 -05:00
|
|
|
/**
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
|
|
|
* The `BitOr` trait is used to specify the functionality of `|`.
|
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* # Example
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* A trivial implementation of `BitOr`. When `Foo | Foo` happens, it ends up
|
|
|
|
* calling `bitor`, and therefore, `main` prints `Bitwise Or-ing!`.
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* ```
|
|
|
|
* struct Foo;
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* impl BitOr<Foo, Foo> for Foo {
|
|
|
|
* fn bitor(&self, _rhs: &Foo) -> Foo {
|
|
|
|
* println("Bitwise Or-ing!");
|
|
|
|
* *self
|
|
|
|
* }
|
|
|
|
* }
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* fn main() {
|
|
|
|
* Foo | Foo;
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
*/
|
2012-09-19 20:00:26 -05:00
|
|
|
#[lang="bitor"]
|
2012-09-28 14:30:11 -05:00
|
|
|
pub trait BitOr<RHS,Result> {
|
2013-03-21 23:20:48 -05:00
|
|
|
fn bitor(&self, rhs: &RHS) -> Result;
|
2012-09-19 20:00:26 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 07:54:48 -05:00
|
|
|
/**
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
|
|
|
* The `BitXor` trait is used to specify the functionality of `^`.
|
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* # Example
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* A trivial implementation of `BitXor`. When `Foo ^ Foo` happens, it ends up
|
|
|
|
* calling `bixtor`, and therefore, `main` prints `Bitwise Xor-ing!`.
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* ```
|
|
|
|
* struct Foo;
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* impl BitXor<Foo, Foo> for Foo {
|
|
|
|
* fn bitxor(&self, _rhs: &Foo) -> Foo {
|
|
|
|
* println("Bitwise Xor-ing!");
|
|
|
|
* *self
|
|
|
|
* }
|
|
|
|
* }
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* fn main() {
|
|
|
|
* Foo ^ Foo;
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
*/
|
2012-09-19 20:00:26 -05:00
|
|
|
#[lang="bitxor"]
|
2012-09-28 14:30:11 -05:00
|
|
|
pub trait BitXor<RHS,Result> {
|
2013-03-21 23:20:48 -05:00
|
|
|
fn bitxor(&self, rhs: &RHS) -> Result;
|
2012-09-19 20:00:26 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 07:54:48 -05:00
|
|
|
/**
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
|
|
|
* The `Shl` trait is used to specify the functionality of `<<`.
|
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* # Example
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* A trivial implementation of `Shl`. When `Foo << Foo` happens, it ends up
|
|
|
|
* calling `shl`, and therefore, `main` prints `Shifting left!`.
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* ```
|
|
|
|
* struct Foo;
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* impl Shl<Foo, Foo> for Foo {
|
|
|
|
* fn shl(&self, _rhs: &Foo) -> Foo {
|
|
|
|
* println("Shifting left!");
|
|
|
|
* *self
|
|
|
|
* }
|
|
|
|
* }
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* fn main() {
|
|
|
|
* Foo << Foo;
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
*/
|
2012-09-19 20:00:26 -05:00
|
|
|
#[lang="shl"]
|
2012-09-28 14:30:11 -05:00
|
|
|
pub trait Shl<RHS,Result> {
|
2013-03-21 23:20:48 -05:00
|
|
|
fn shl(&self, rhs: &RHS) -> Result;
|
2012-09-19 20:00:26 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 07:54:48 -05:00
|
|
|
/**
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
|
|
|
* The `Shr` trait is used to specify the functionality of `>>`.
|
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* # Example
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* A trivial implementation of `Shr`. When `Foo >> Foo` happens, it ends up
|
|
|
|
* calling `shr`, and therefore, `main` prints `Shifting right!`.
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* ```
|
|
|
|
* struct Foo;
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* impl Shr<Foo, Foo> for Foo {
|
|
|
|
* fn shr(&self, _rhs: &Foo) -> Foo {
|
|
|
|
* println("Shifting right!");
|
|
|
|
* *self
|
|
|
|
* }
|
|
|
|
* }
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* fn main() {
|
|
|
|
* Foo >> Foo;
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
*/
|
2012-09-19 20:00:26 -05:00
|
|
|
#[lang="shr"]
|
2012-09-28 14:30:11 -05:00
|
|
|
pub trait Shr<RHS,Result> {
|
2013-03-21 23:20:48 -05:00
|
|
|
fn shr(&self, rhs: &RHS) -> Result;
|
2012-09-19 20:00:26 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 07:54:48 -05:00
|
|
|
/**
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
|
|
|
* The `Index` trait is used to specify the functionality of indexing operations
|
2013-09-26 07:54:48 -05:00
|
|
|
* like `arr[idx]`.
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* # Example
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
|
|
|
* A trivial implementation of `Index`. When `Foo[Foo]` happens, it ends up
|
2013-09-26 07:54:48 -05:00
|
|
|
* calling `index`, and therefore, `main` prints `Indexing!`.
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* ```
|
|
|
|
* struct Foo;
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* impl Index<Foo, Foo> for Foo {
|
|
|
|
* fn index(&self, _rhs: &Foo) -> Foo {
|
|
|
|
* println("Indexing!");
|
|
|
|
* *self
|
|
|
|
* }
|
|
|
|
* }
|
2013-09-27 11:57:52 -05:00
|
|
|
*
|
2013-09-26 07:54:48 -05:00
|
|
|
* fn main() {
|
|
|
|
* Foo[Foo];
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
*/
|
2012-11-28 15:51:50 -06:00
|
|
|
#[lang="index"]
|
|
|
|
pub trait Index<Index,Result> {
|
2013-03-26 14:04:30 -05:00
|
|
|
fn index(&self, index: &Index) -> Result;
|
2012-11-28 15:51:50 -06:00
|
|
|
}
|
2013-07-22 18:50:17 -05:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod bench {
|
|
|
|
|
|
|
|
use extra::test::BenchHarness;
|
|
|
|
use ops::Drop;
|
|
|
|
|
|
|
|
// Overhead of dtors
|
|
|
|
|
|
|
|
struct HasDtor {
|
|
|
|
x: int
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for HasDtor {
|
2013-09-16 20:18:07 -05:00
|
|
|
fn drop(&mut self) {
|
2013-07-22 18:50:17 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
fn alloc_obj_with_dtor(bh: &mut BenchHarness) {
|
2013-11-22 16:15:32 -06:00
|
|
|
bh.iter(|| {
|
2013-07-22 18:50:17 -05:00
|
|
|
HasDtor { x : 10 };
|
2013-11-22 16:15:32 -06:00
|
|
|
})
|
2013-07-22 18:50:17 -05:00
|
|
|
}
|
2013-09-16 20:18:07 -05:00
|
|
|
}
|