2012-12-03 16:48:01 -08: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.
|
|
|
|
|
2016-03-04 17:37:11 -05:00
|
|
|
//! Overloadable operators.
|
2014-11-25 21:17:11 -05:00
|
|
|
//!
|
2016-08-15 15:34:02 -04:00
|
|
|
//! Implementing these traits allows you to overload certain operators.
|
2014-11-25 21:17:11 -05:00
|
|
|
//!
|
2015-01-16 08:31:01 +01:00
|
|
|
//! Some of these traits are imported by the prelude, so they are available in
|
2016-08-15 15:34:02 -04:00
|
|
|
//! every Rust program. Only operators backed by traits can be overloaded. For
|
2016-09-28 22:02:19 +02:00
|
|
|
//! example, the addition operator (`+`) can be overloaded through the [`Add`]
|
2016-08-15 15:34:02 -04:00
|
|
|
//! trait, but since the assignment operator (`=`) has no backing trait, there
|
|
|
|
//! is no way of overloading its semantics. Additionally, this module does not
|
|
|
|
//! provide any mechanism to create new operators. If traitless overloading or
|
|
|
|
//! custom operators are required, you should look toward macros or compiler
|
|
|
|
//! plugins to extend Rust's syntax.
|
2014-11-25 21:17:11 -05:00
|
|
|
//!
|
2016-08-25 15:29:19 -04:00
|
|
|
//! Note that the `&&` and `||` operators short-circuit, i.e. they only
|
|
|
|
//! evaluate their second operand if it contributes to the result. Since this
|
|
|
|
//! behavior is not enforceable by traits, `&&` and `||` are not supported as
|
|
|
|
//! overloadable operators.
|
|
|
|
//!
|
2015-01-16 08:31:01 +01:00
|
|
|
//! Many of the operators take their operands by value. In non-generic
|
|
|
|
//! contexts involving built-in types, this is usually not a problem.
|
|
|
|
//! However, using these operators in generic code, requires some
|
|
|
|
//! attention if values have to be reused as opposed to letting the operators
|
2017-03-12 14:04:52 -04:00
|
|
|
//! consume them. One option is to occasionally use [`clone`].
|
2015-01-16 08:31:01 +01:00
|
|
|
//! Another option is to rely on the types involved providing additional
|
|
|
|
//! operator implementations for references. For example, for a user-defined
|
|
|
|
//! type `T` which is supposed to support addition, it is probably a good
|
2016-09-28 22:02:19 +02:00
|
|
|
//! idea to have both `T` and `&T` implement the traits [`Add<T>`][`Add`] and
|
|
|
|
//! [`Add<&T>`][`Add`] so that generic code can be written without unnecessary
|
|
|
|
//! cloning.
|
2015-01-16 08:31:01 +01:00
|
|
|
//!
|
2015-03-11 21:11:40 -04:00
|
|
|
//! # Examples
|
2014-11-25 21:17:11 -05:00
|
|
|
//!
|
2016-09-28 22:02:19 +02:00
|
|
|
//! This example creates a `Point` struct that implements [`Add`] and [`Sub`],
|
|
|
|
//! and then demonstrates adding and subtracting two `Point`s.
|
2014-11-25 21:17:11 -05:00
|
|
|
//!
|
|
|
|
//! ```rust
|
2014-12-22 09:04:23 -08:00
|
|
|
//! use std::ops::{Add, Sub};
|
|
|
|
//!
|
2015-01-28 08:34:18 -05:00
|
|
|
//! #[derive(Debug)]
|
2014-11-25 21:17:11 -05:00
|
|
|
//! struct Point {
|
2015-02-15 10:22:43 -05:00
|
|
|
//! x: i32,
|
2016-01-04 22:37:06 +02:00
|
|
|
//! y: i32,
|
2014-11-25 21:17:11 -05:00
|
|
|
//! }
|
|
|
|
//!
|
2014-12-31 15:45:13 -05:00
|
|
|
//! impl Add for Point {
|
|
|
|
//! type Output = Point;
|
|
|
|
//!
|
2014-12-01 19:10:12 -05:00
|
|
|
//! fn add(self, other: Point) -> Point {
|
2014-11-25 21:17:11 -05:00
|
|
|
//! Point {x: self.x + other.x, y: self.y + other.y}
|
|
|
|
//! }
|
|
|
|
//! }
|
|
|
|
//!
|
2014-12-31 15:45:13 -05:00
|
|
|
//! impl Sub for Point {
|
|
|
|
//! type Output = Point;
|
|
|
|
//!
|
2014-12-01 19:10:12 -05:00
|
|
|
//! fn sub(self, other: Point) -> Point {
|
2014-11-25 21:17:11 -05:00
|
|
|
//! Point {x: self.x - other.x, y: self.y - other.y}
|
|
|
|
//! }
|
|
|
|
//! }
|
|
|
|
//! fn main() {
|
2015-01-06 16:16:35 -08:00
|
|
|
//! println!("{:?}", Point {x: 1, y: 0} + Point {x: 2, y: 3});
|
|
|
|
//! println!("{:?}", Point {x: 1, y: 0} - Point {x: 2, y: 3});
|
2014-11-25 21:17:11 -05:00
|
|
|
//! }
|
|
|
|
//! ```
|
|
|
|
//!
|
2016-08-16 04:11:48 -04:00
|
|
|
//! See the documentation for each trait for an example implementation.
|
2016-08-18 17:46:34 -04:00
|
|
|
//!
|
|
|
|
//! The [`Fn`], [`FnMut`], and [`FnOnce`] traits are implemented by types that can be
|
2016-09-28 22:02:19 +02:00
|
|
|
//! invoked like functions. Note that [`Fn`] takes `&self`, [`FnMut`] takes `&mut
|
|
|
|
//! self` and [`FnOnce`] takes `self`. These correspond to the three kinds of
|
2016-08-18 17:46:34 -04:00
|
|
|
//! methods that can be invoked on an instance: call-by-reference,
|
|
|
|
//! call-by-mutable-reference, and call-by-value. The most common use of these
|
|
|
|
//! traits is to act as bounds to higher-level functions that take functions or
|
|
|
|
//! closures as arguments.
|
|
|
|
//!
|
2016-09-28 22:02:19 +02:00
|
|
|
//! Taking a [`Fn`] as a parameter:
|
2016-08-18 17:46:34 -04:00
|
|
|
//!
|
|
|
|
//! ```rust
|
|
|
|
//! fn call_with_one<F>(func: F) -> usize
|
|
|
|
//! where F: Fn(usize) -> usize
|
|
|
|
//! {
|
|
|
|
//! func(1)
|
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! let double = |x| x * 2;
|
|
|
|
//! assert_eq!(call_with_one(double), 2);
|
|
|
|
//! ```
|
|
|
|
//!
|
2016-09-28 22:02:19 +02:00
|
|
|
//! Taking a [`FnMut`] as a parameter:
|
2016-08-18 17:46:34 -04:00
|
|
|
//!
|
|
|
|
//! ```rust
|
|
|
|
//! fn do_twice<F>(mut func: F)
|
|
|
|
//! where F: FnMut()
|
|
|
|
//! {
|
|
|
|
//! func();
|
|
|
|
//! func();
|
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! let mut x: usize = 1;
|
|
|
|
//! {
|
|
|
|
//! let add_two_to_x = || x += 2;
|
|
|
|
//! do_twice(add_two_to_x);
|
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! assert_eq!(x, 5);
|
|
|
|
//! ```
|
|
|
|
//!
|
2016-09-28 22:02:19 +02:00
|
|
|
//! Taking a [`FnOnce`] as a parameter:
|
2016-08-18 17:46:34 -04:00
|
|
|
//!
|
|
|
|
//! ```rust
|
|
|
|
//! fn consume_with_relish<F>(func: F)
|
|
|
|
//! where F: FnOnce() -> String
|
|
|
|
//! {
|
|
|
|
//! // `func` consumes its captured variables, so it cannot be run more
|
|
|
|
//! // than once
|
|
|
|
//! println!("Consumed: {}", func());
|
|
|
|
//!
|
|
|
|
//! println!("Delicious!");
|
|
|
|
//!
|
|
|
|
//! // Attempting to invoke `func()` again will throw a `use of moved
|
|
|
|
//! // value` error for `func`
|
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! let x = String::from("x");
|
|
|
|
//! let consume_and_return_x = move || x;
|
|
|
|
//! consume_with_relish(consume_and_return_x);
|
|
|
|
//!
|
|
|
|
//! // `consume_and_return_x` can no longer be invoked at this point
|
|
|
|
//! ```
|
2016-09-28 22:02:19 +02:00
|
|
|
//!
|
|
|
|
//! [`Fn`]: trait.Fn.html
|
|
|
|
//! [`FnMut`]: trait.FnMut.html
|
|
|
|
//! [`FnOnce`]: trait.FnOnce.html
|
|
|
|
//! [`Add`]: trait.Add.html
|
|
|
|
//! [`Sub`]: trait.Sub.html
|
2017-03-12 14:04:52 -04:00
|
|
|
//! [`clone`]: ../clone/trait.Clone.html#tymethod.clone
|
2013-09-26 05:54:48 -07:00
|
|
|
|
2015-01-23 21:48:20 -08:00
|
|
|
#![stable(feature = "rust1", since = "1.0.0")]
|
2015-01-04 15:42:51 -08:00
|
|
|
|
2017-06-07 22:04:46 -04:00
|
|
|
mod arith;
|
2017-06-07 22:08:14 -04:00
|
|
|
mod bit;
|
2017-06-07 22:13:31 -04:00
|
|
|
mod deref;
|
2017-06-07 22:16:16 -04:00
|
|
|
mod drop;
|
2017-06-07 21:59:57 -04:00
|
|
|
mod function;
|
2016-12-26 14:34:03 +01:00
|
|
|
mod generator;
|
2017-06-07 22:14:13 -04:00
|
|
|
mod index;
|
2017-06-07 22:10:21 -04:00
|
|
|
mod place;
|
2017-06-07 21:44:03 -04:00
|
|
|
mod range;
|
2017-06-07 22:12:18 -04:00
|
|
|
mod try;
|
2017-06-07 22:15:05 -04:00
|
|
|
mod unsize;
|
2017-06-07 21:44:03 -04:00
|
|
|
|
2017-06-07 22:04:46 -04:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
pub use self::arith::{Add, Sub, Mul, Div, Rem, Neg};
|
|
|
|
#[stable(feature = "op_assign_traits", since = "1.8.0")]
|
|
|
|
pub use self::arith::{AddAssign, SubAssign, MulAssign, DivAssign, RemAssign};
|
|
|
|
|
2017-06-07 22:08:14 -04:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
pub use self::bit::{Not, BitAnd, BitOr, BitXor, Shl, Shr};
|
|
|
|
#[stable(feature = "op_assign_traits", since = "1.8.0")]
|
|
|
|
pub use self::bit::{BitAndAssign, BitOrAssign, BitXorAssign, ShlAssign, ShrAssign};
|
|
|
|
|
2017-06-07 22:13:31 -04:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
pub use self::deref::{Deref, DerefMut};
|
|
|
|
|
2017-06-07 22:16:16 -04:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
pub use self::drop::Drop;
|
|
|
|
|
2017-06-07 21:59:57 -04:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
pub use self::function::{Fn, FnMut, FnOnce};
|
|
|
|
|
2017-06-07 22:14:13 -04:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
pub use self::index::{Index, IndexMut};
|
|
|
|
|
2017-06-07 21:44:03 -04:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
pub use self::range::{Range, RangeFrom, RangeFull, RangeTo};
|
|
|
|
|
|
|
|
#[unstable(feature = "inclusive_range", reason = "recently added, follows RFC", issue = "28237")]
|
|
|
|
pub use self::range::{RangeInclusive, RangeToInclusive};
|
|
|
|
|
2017-06-07 22:12:18 -04:00
|
|
|
#[unstable(feature = "try_trait", issue = "42327")]
|
|
|
|
pub use self::try::Try;
|
|
|
|
|
2017-07-10 09:33:54 -07:00
|
|
|
#[unstable(feature = "generator_trait", issue = "43122")]
|
2017-07-05 15:02:30 -07:00
|
|
|
pub use self::generator::{Generator, State};
|
2016-12-26 14:34:03 +01:00
|
|
|
|
2017-06-07 22:10:21 -04:00
|
|
|
#[unstable(feature = "placement_new_protocol", issue = "27779")]
|
|
|
|
pub use self::place::{Place, Placer, InPlace, Boxed, BoxPlace};
|
|
|
|
|
2017-06-07 22:15:05 -04:00
|
|
|
#[unstable(feature = "coerce_unsized", issue = "27732")]
|
|
|
|
pub use self::unsize::CoerceUnsized;
|