Add

Trait Add 

1.0.0 (const: unstable) · Source
pub trait Add<Rhs = Self> {
    type Output;

    // Required method
    fn add(self, rhs: Rhs) -> Self::Output;
}
Expand description

The addition operator +.

Note that Rhs is Self by default, but this is not mandatory. For example, std::time::SystemTime implements Add<Duration>, which permits operations of the form SystemTime = SystemTime + Duration.

§Examples

§Addable points

use std::ops::Add;

#[derive(Debug, Copy, Clone, PartialEq)]
struct Point {
    x: i32,
    y: i32,
}

impl Add for Point {
    type Output = Self;

    fn add(self, other: Self) -> Self {
        Self {
            x: self.x + other.x,
            y: self.y + other.y,
        }
    }
}

assert_eq!(Point { x: 1, y: 0 } + Point { x: 2, y: 3 },
           Point { x: 3, y: 3 });

§Implementing Add with generics

Here is an example of the same Point struct implementing the Add trait using generics.

use std::ops::Add;

#[derive(Debug, Copy, Clone, PartialEq)]
struct Point<T> {
    x: T,
    y: T,
}

// Notice that the implementation uses the associated type `Output`.
impl<T: Add<Output = T>> Add for Point<T> {
    type Output = Self;

    fn add(self, other: Self) -> Self::Output {
        Self {
            x: self.x + other.x,
            y: self.y + other.y,
        }
    }
}

assert_eq!(Point { x: 1, y: 0 } + Point { x: 2, y: 3 },
           Point { x: 3, y: 3 });

Required Associated Types§

1.0.0 · Source

type Output

The resulting type after applying the + operator.

Required Methods§

1.0.0 · Source

fn add(self, rhs: Rhs) -> Self::Output

Performs the + operation.

§Example
assert_eq!(12 + 1, 13);

Implementors§

1.0.0 (const: unstable) · Source§

impl Add for f16

1.0.0 (const: unstable) · Source§

impl Add for f32

1.0.0 (const: unstable) · Source§

impl Add for f64

1.0.0 (const: unstable) · Source§

impl Add for f128

1.0.0 (const: unstable) · Source§

impl Add for i8

1.0.0 (const: unstable) · Source§

impl Add for i16

1.0.0 (const: unstable) · Source§

impl Add for i32

1.0.0 (const: unstable) · Source§

impl Add for i64

1.0.0 (const: unstable) · Source§

impl Add for i128

1.0.0 (const: unstable) · Source§

impl Add for isize

1.0.0 (const: unstable) · Source§

impl Add for u8

1.0.0 (const: unstable) · Source§

impl Add for u16

1.0.0 (const: unstable) · Source§

impl Add for u32

1.0.0 (const: unstable) · Source§

impl Add for u64

1.0.0 (const: unstable) · Source§

impl Add for u128

1.0.0 (const: unstable) · Source§

impl Add for usize

Source§

impl Add for f16

Source§

impl Add for Assume

1.3.0 (const: unstable) · Source§

impl Add for Duration

1.74.0 (const: unstable) · Source§

impl Add for Saturating<i8>

1.74.0 (const: unstable) · Source§

impl Add for Saturating<i16>

1.74.0 (const: unstable) · Source§

impl Add for Saturating<i32>

1.74.0 (const: unstable) · Source§

impl Add for Saturating<i64>

1.74.0 (const: unstable) · Source§

impl Add for Saturating<i128>

1.74.0 (const: unstable) · Source§

impl Add for Saturating<isize>

1.74.0 (const: unstable) · Source§

impl Add for Saturating<u8>

1.74.0 (const: unstable) · Source§

impl Add for Saturating<u16>

1.74.0 (const: unstable) · Source§

impl Add for Saturating<u32>

1.74.0 (const: unstable) · Source§

impl Add for Saturating<u64>

1.74.0 (const: unstable) · Source§

impl Add for Saturating<u128>

1.74.0 (const: unstable) · Source§

impl Add for Saturating<usize>

1.0.0 (const: unstable) · Source§

impl Add for Wrapping<i8>

1.0.0 (const: unstable) · Source§

impl Add for Wrapping<i16>

1.0.0 (const: unstable) · Source§

impl Add for Wrapping<i32>

1.0.0 (const: unstable) · Source§

impl Add for Wrapping<i64>

1.0.0 (const: unstable) · Source§

impl Add for Wrapping<i128>

1.0.0 (const: unstable) · Source§

impl Add for Wrapping<isize>

1.0.0 (const: unstable) · Source§

impl Add for Wrapping<u8>

1.0.0 (const: unstable) · Source§

impl Add for Wrapping<u16>

1.0.0 (const: unstable) · Source§

impl Add for Wrapping<u32>

1.0.0 (const: unstable) · Source§

impl Add for Wrapping<u64>

1.0.0 (const: unstable) · Source§

impl Add for Wrapping<u128>

1.0.0 (const: unstable) · Source§

impl Add for Wrapping<usize>

Source§

impl Add for bf16

Source§

impl Add for Jzazbz

Source§

impl Add for Jzczhz

Source§

impl Add for LCh

Source§

impl Add for Luv

Source§

impl Add for Oklab

Source§

impl Add for Oklch

Source§

impl Add for m128

Source§

impl Add for m128d

Source§

impl Add for AutoSimd<[f32; 2]>

Source§

impl Add for AutoSimd<[f32; 4]>

Source§

impl Add for AutoSimd<[f32; 8]>

Source§

impl Add for AutoSimd<[f32; 16]>

Source§

impl Add for AutoSimd<[f64; 2]>

Source§

impl Add for AutoSimd<[f64; 4]>

Source§

impl Add for AutoSimd<[f64; 8]>

Source§

impl Add for AutoSimd<[i8; 2]>

Source§

impl Add for AutoSimd<[i8; 4]>

Source§

impl Add for AutoSimd<[i8; 8]>

Source§

impl Add for AutoSimd<[i8; 16]>

Source§

impl Add for AutoSimd<[i8; 32]>

Source§

impl Add for AutoSimd<[i16; 2]>

Source§

impl Add for AutoSimd<[i16; 4]>

Source§

impl Add for AutoSimd<[i16; 8]>

Source§

impl Add for AutoSimd<[i16; 16]>

Source§

impl Add for AutoSimd<[i16; 32]>

Source§

impl Add for AutoSimd<[i32; 2]>

Source§

impl Add for AutoSimd<[i32; 4]>

Source§

impl Add for AutoSimd<[i32; 8]>

Source§

impl Add for AutoSimd<[i32; 16]>

Source§

impl Add for AutoSimd<[i64; 2]>

Source§

impl Add for AutoSimd<[i64; 4]>

Source§

impl Add for AutoSimd<[i64; 8]>

Source§

impl Add for AutoSimd<[i128; 1]>

Source§

impl Add for AutoSimd<[i128; 2]>

Source§

impl Add for AutoSimd<[i128; 4]>

Source§

impl Add for AutoSimd<[isize; 2]>

Source§

impl Add for AutoSimd<[isize; 4]>

Source§

impl Add for AutoSimd<[isize; 8]>

Source§

impl Add for AutoSimd<[u8; 2]>

Source§

impl Add for AutoSimd<[u8; 4]>

Source§

impl Add for AutoSimd<[u8; 8]>

Source§

impl Add for AutoSimd<[u8; 16]>

Source§

impl Add for AutoSimd<[u8; 32]>

Source§

impl Add for AutoSimd<[u16; 2]>

Source§

impl Add for AutoSimd<[u16; 4]>

Source§

impl Add for AutoSimd<[u16; 8]>

Source§

impl Add for AutoSimd<[u16; 16]>

Source§

impl Add for AutoSimd<[u16; 32]>

Source§

impl Add for AutoSimd<[u32; 2]>

Source§

impl Add for AutoSimd<[u32; 4]>

Source§

impl Add for AutoSimd<[u32; 8]>

Source§

impl Add for AutoSimd<[u32; 16]>

Source§

impl Add for AutoSimd<[u64; 2]>

Source§

impl Add for AutoSimd<[u64; 4]>

Source§

impl Add for AutoSimd<[u64; 8]>

Source§

impl Add for AutoSimd<[u128; 1]>

Source§

impl Add for AutoSimd<[u128; 2]>

Source§

impl Add for AutoSimd<[u128; 4]>

Source§

impl Add for AutoSimd<[usize; 2]>

Source§

impl Add for AutoSimd<[usize; 4]>

Source§

impl Add for AutoSimd<[usize; 8]>

Source§

impl Add for WideF32x4

Source§

impl Add for WideF32x8

Source§

impl Add for WideF64x4

Source§

impl Add for ATerm

Source§

impl Add for f32x4

Source§

impl Add for f32x8

Source§

impl Add for f64x2

Source§

impl Add for f64x4

Source§

impl Add for i8x16

Source§

impl Add for i8x32

Source§

impl Add for i16x8

Source§

impl Add for i16x16

Source§

impl Add for i32x4

Source§

impl Add for i32x8

Source§

impl Add for i64x2

Source§

impl Add for i64x4

Source§

impl Add for u8x16

Source§

impl Add for u8x32

Source§

impl Add for u16x8

Source§

impl Add for u16x16

Source§

impl Add for u32x4

Source§

impl Add for u32x8

Source§

impl Add for u64x2

Source§

impl Add for u64x4

1.0.0 (const: unstable) · Source§

impl Add<&f16> for &f16

1.0.0 (const: unstable) · Source§

impl Add<&f16> for f16

1.0.0 (const: unstable) · Source§

impl Add<&f32> for &f32

1.0.0 (const: unstable) · Source§

impl Add<&f32> for f32

1.0.0 (const: unstable) · Source§

impl Add<&f64> for &f64

1.0.0 (const: unstable) · Source§

impl Add<&f64> for f64

1.0.0 (const: unstable) · Source§

impl Add<&f128> for &f128

1.0.0 (const: unstable) · Source§

impl Add<&f128> for f128

1.0.0 (const: unstable) · Source§

impl Add<&i8> for &i8

1.0.0 (const: unstable) · Source§

impl Add<&i8> for i8

1.0.0 (const: unstable) · Source§

impl Add<&i16> for &i16

1.0.0 (const: unstable) · Source§

impl Add<&i16> for i16

1.0.0 (const: unstable) · Source§

impl Add<&i32> for &i32

1.0.0 (const: unstable) · Source§

impl Add<&i32> for i32

1.0.0 (const: unstable) · Source§

impl Add<&i64> for &i64

1.0.0 (const: unstable) · Source§

impl Add<&i64> for i64

1.0.0 (const: unstable) · Source§

impl Add<&i128> for &i128

1.0.0 (const: unstable) · Source§

impl Add<&i128> for i128

1.0.0 (const: unstable) · Source§

impl Add<&isize> for &isize

1.0.0 (const: unstable) · Source§

impl Add<&isize> for isize

1.0.0 · Source§

impl Add<&str> for String

Available on non-no_global_oom_handling only.

Implements the + operator for concatenating two strings.

This consumes the String on the left-hand side and re-uses its buffer (growing it if necessary). This is done to avoid allocating a new String and copying the entire contents on every operation, which would lead to O(n^2) running time when building an n-byte string by repeated concatenation.

The string on the right-hand side is only borrowed; its contents are copied into the returned String.

§Examples

Concatenating two Strings takes the first by value and borrows the second:

let a = String::from("hello");
let b = String::from(" world");
let c = a + &b;
// `a` is moved and can no longer be used here.

If you want to keep using the first String, you can clone it and append to the clone instead:

let a = String::from("hello");
let b = String::from(" world");
let c = a.clone() + &b;
// `a` is still valid here.

Concatenating &str slices can be done by converting the first to a String:

let a = "hello";
let b = " world";
let c = a.to_string() + b;
1.0.0 (const: unstable) · Source§

impl Add<&u8> for &u8

1.0.0 (const: unstable) · Source§

impl Add<&u8> for u8

1.0.0 (const: unstable) · Source§

impl Add<&u16> for &u16

1.0.0 (const: unstable) · Source§

impl Add<&u16> for u16

1.0.0 (const: unstable) · Source§

impl Add<&u32> for &u32

1.0.0 (const: unstable) · Source§

impl Add<&u32> for u32

1.0.0 (const: unstable) · Source§

impl Add<&u64> for &u64

1.0.0 (const: unstable) · Source§

impl Add<&u64> for u64

1.0.0 (const: unstable) · Source§

impl Add<&u128> for &u128

1.0.0 (const: unstable) · Source§

impl Add<&u128> for u128

1.0.0 (const: unstable) · Source§

impl Add<&usize> for &usize

1.0.0 (const: unstable) · Source§

impl Add<&usize> for usize

Source§

impl Add<&f16> for &f16

Source§

impl Add<&f16> for f16

1.74.0 (const: unstable) · Source§

impl Add<&Saturating<i8>> for &Saturating<i8>

1.74.0 (const: unstable) · Source§

impl Add<&Saturating<i8>> for Saturating<i8>

1.74.0 (const: unstable) · Source§

impl Add<&Saturating<i16>> for &Saturating<i16>

1.74.0 (const: unstable) · Source§

impl Add<&Saturating<i16>> for Saturating<i16>

1.74.0 (const: unstable) · Source§

impl Add<&Saturating<i32>> for &Saturating<i32>

1.74.0 (const: unstable) · Source§

impl Add<&Saturating<i32>> for Saturating<i32>

1.74.0 (const: unstable) · Source§

impl Add<&Saturating<i64>> for &Saturating<i64>

1.74.0 (const: unstable) · Source§

impl Add<&Saturating<i64>> for Saturating<i64>

1.74.0 (const: unstable) · Source§

impl Add<&Saturating<i128>> for &Saturating<i128>

1.74.0 (const: unstable) · Source§

impl Add<&Saturating<i128>> for Saturating<i128>

1.74.0 (const: unstable) · Source§

impl Add<&Saturating<isize>> for &Saturating<isize>

1.74.0 (const: unstable) · Source§

impl Add<&Saturating<isize>> for Saturating<isize>

1.74.0 (const: unstable) · Source§

impl Add<&Saturating<u8>> for &Saturating<u8>

1.74.0 (const: unstable) · Source§

impl Add<&Saturating<u8>> for Saturating<u8>

1.74.0 (const: unstable) · Source§

impl Add<&Saturating<u16>> for &Saturating<u16>

1.74.0 (const: unstable) · Source§

impl Add<&Saturating<u16>> for Saturating<u16>

1.74.0 (const: unstable) · Source§

impl Add<&Saturating<u32>> for &Saturating<u32>

1.74.0 (const: unstable) · Source§

impl Add<&Saturating<u32>> for Saturating<u32>

1.74.0 (const: unstable) · Source§

impl Add<&Saturating<u64>> for &Saturating<u64>

1.74.0 (const: unstable) · Source§

impl Add<&Saturating<u64>> for Saturating<u64>

1.74.0 (const: unstable) · Source§

impl Add<&Saturating<u128>> for &Saturating<u128>

1.74.0 (const: unstable) · Source§

impl Add<&Saturating<u128>> for Saturating<u128>

1.74.0 (const: unstable) · Source§

impl Add<&Saturating<usize>> for &Saturating<usize>

1.74.0 (const: unstable) · Source§

impl Add<&Saturating<usize>> for Saturating<usize>

1.14.0 (const: unstable) · Source§

impl Add<&Wrapping<i8>> for &Wrapping<i8>

1.14.0 (const: unstable) · Source§

impl Add<&Wrapping<i8>> for Wrapping<i8>

1.14.0 (const: unstable) · Source§

impl Add<&Wrapping<i16>> for &Wrapping<i16>

1.14.0 (const: unstable) · Source§

impl Add<&Wrapping<i16>> for Wrapping<i16>

1.14.0 (const: unstable) · Source§

impl Add<&Wrapping<i32>> for &Wrapping<i32>

1.14.0 (const: unstable) · Source§

impl Add<&Wrapping<i32>> for Wrapping<i32>

1.14.0 (const: unstable) · Source§

impl Add<&Wrapping<i64>> for &Wrapping<i64>

1.14.0 (const: unstable) · Source§

impl Add<&Wrapping<i64>> for Wrapping<i64>

1.14.0 (const: unstable) · Source§

impl Add<&Wrapping<i128>> for &Wrapping<i128>

1.14.0 (const: unstable) · Source§

impl Add<&Wrapping<i128>> for Wrapping<i128>

1.14.0 (const: unstable) · Source§

impl Add<&Wrapping<isize>> for &Wrapping<isize>

1.14.0 (const: unstable) · Source§

impl Add<&Wrapping<isize>> for Wrapping<isize>

1.14.0 (const: unstable) · Source§

impl Add<&Wrapping<u8>> for &Wrapping<u8>

1.14.0 (const: unstable) · Source§

impl Add<&Wrapping<u8>> for Wrapping<u8>

1.14.0 (const: unstable) · Source§

impl Add<&Wrapping<u16>> for &Wrapping<u16>

1.14.0 (const: unstable) · Source§

impl Add<&Wrapping<u16>> for Wrapping<u16>

1.14.0 (const: unstable) · Source§

impl Add<&Wrapping<u32>> for &Wrapping<u32>

1.14.0 (const: unstable) · Source§

impl Add<&Wrapping<u32>> for Wrapping<u32>

1.14.0 (const: unstable) · Source§

impl Add<&Wrapping<u64>> for &Wrapping<u64>

1.14.0 (const: unstable) · Source§

impl Add<&Wrapping<u64>> for Wrapping<u64>

1.14.0 (const: unstable) · Source§

impl Add<&Wrapping<u128>> for &Wrapping<u128>

1.14.0 (const: unstable) · Source§

impl Add<&Wrapping<u128>> for Wrapping<u128>

1.14.0 (const: unstable) · Source§

impl Add<&Wrapping<usize>> for &Wrapping<usize>

1.14.0 (const: unstable) · Source§

impl Add<&Wrapping<usize>> for Wrapping<usize>

Source§

impl Add<&bf16> for &bf16

Source§

impl Add<&bf16> for bf16

Source§

impl Add<&f32x4> for f32x4

Source§

impl Add<&f32x8> for f32x8

Source§

impl Add<&f64x2> for f64x2

Source§

impl Add<&f64x4> for f64x4

Source§

impl Add<&i8x16> for i8x16

Source§

impl Add<&i8x32> for i8x32

Source§

impl Add<&i16x8> for i16x8

Source§

impl Add<&i16x16> for i16x16

Source§

impl Add<&i32x4> for i32x4

Source§

impl Add<&i32x8> for i32x8

Source§

impl Add<&i64x2> for i64x2

Source§

impl Add<&u8x16> for u8x16

Source§

impl Add<&u8x32> for u8x32

Source§

impl Add<&u16x8> for u16x8

Source§

impl Add<&u16x16> for u16x16

Source§

impl Add<&u32x4> for u32x4

Source§

impl Add<&u32x8> for u32x8

Source§

impl Add<&u64x2> for u64x2

Source§

impl Add<&u64x4> for u64x4

1.0.0 (const: unstable) · Source§

impl Add<f16> for &f16

1.0.0 (const: unstable) · Source§

impl Add<f32> for &f32

Source§

impl Add<f32> for Jzazbz

Source§

impl Add<f32> for Jzczhz

Source§

impl Add<f32> for LCh

Source§

impl Add<f32> for Luv

Source§

impl Add<f32> for Oklab

Source§

impl Add<f32> for Oklch

Source§

impl Add<f32> for f32x4

Source§

impl Add<f32> for f32x8

1.0.0 (const: unstable) · Source§

impl Add<f64> for &f64

Source§

impl Add<f64> for f64x2

Source§

impl Add<f64> for f64x4

1.0.0 (const: unstable) · Source§

impl Add<f128> for &f128

1.0.0 (const: unstable) · Source§

impl Add<i8> for &i8

Source§

impl Add<i8> for i8x16

Source§

impl Add<i8> for i8x32

1.0.0 (const: unstable) · Source§

impl Add<i16> for &i16

Source§

impl Add<i16> for i16x8

Source§

impl Add<i16> for i16x16

1.0.0 (const: unstable) · Source§

impl Add<i32> for &i32

Source§

impl Add<i32> for i32x4

Source§

impl Add<i32> for i32x8

1.0.0 (const: unstable) · Source§

impl Add<i64> for &i64

Source§

impl Add<i64> for i64x2

Source§

impl Add<i64> for i64x4

1.0.0 (const: unstable) · Source§

impl Add<i128> for &i128

1.0.0 (const: unstable) · Source§

impl Add<isize> for &isize

1.0.0 (const: unstable) · Source§

impl Add<u8> for &u8

Source§

impl Add<u8> for u8x16

Source§

impl Add<u8> for u8x32

1.0.0 (const: unstable) · Source§

impl Add<u16> for &u16

Source§

impl Add<u16> for u16x8

Source§

impl Add<u16> for u16x16

1.0.0 (const: unstable) · Source§

impl Add<u32> for &u32

Source§

impl Add<u32> for u32x4

1.0.0 (const: unstable) · Source§

impl Add<u64> for &u64

Source§

impl Add<u64> for u64x2

Source§

impl Add<u64> for u64x4

1.0.0 (const: unstable) · Source§

impl Add<u128> for &u128

1.0.0 (const: unstable) · Source§

impl Add<usize> for &usize

Source§

impl Add<usize> for Dyn

Source§

impl Add<f16> for &f16

1.8.0 · Source§

impl Add<Duration> for grafix_toolbox::stdlib::time::Instant

1.8.0 · Source§

impl Add<Duration> for SystemTime

Source§

impl Add<Duration> for tokio::time::instant::Instant

1.74.0 (const: unstable) · Source§

impl Add<Saturating<i8>> for &Saturating<i8>

1.74.0 (const: unstable) · Source§

impl Add<Saturating<i16>> for &Saturating<i16>

1.74.0 (const: unstable) · Source§

impl Add<Saturating<i32>> for &Saturating<i32>

1.74.0 (const: unstable) · Source§

impl Add<Saturating<i64>> for &Saturating<i64>

1.74.0 (const: unstable) · Source§

impl Add<Saturating<i128>> for &Saturating<i128>

1.74.0 (const: unstable) · Source§

impl Add<Saturating<isize>> for &Saturating<isize>

1.74.0 (const: unstable) · Source§

impl Add<Saturating<u8>> for &Saturating<u8>

1.74.0 (const: unstable) · Source§

impl Add<Saturating<u16>> for &Saturating<u16>

1.74.0 (const: unstable) · Source§

impl Add<Saturating<u32>> for &Saturating<u32>

1.74.0 (const: unstable) · Source§

impl Add<Saturating<u64>> for &Saturating<u64>

1.74.0 (const: unstable) · Source§

impl Add<Saturating<u128>> for &Saturating<u128>

1.74.0 (const: unstable) · Source§

impl Add<Saturating<usize>> for &Saturating<usize>

1.14.0 (const: unstable) · Source§

impl Add<Wrapping<i8>> for &Wrapping<i8>

1.14.0 (const: unstable) · Source§

impl Add<Wrapping<i16>> for &Wrapping<i16>

1.14.0 (const: unstable) · Source§

impl Add<Wrapping<i32>> for &Wrapping<i32>

1.14.0 (const: unstable) · Source§

impl Add<Wrapping<i64>> for &Wrapping<i64>

1.14.0 (const: unstable) · Source§

impl Add<Wrapping<i128>> for &Wrapping<i128>

1.14.0 (const: unstable) · Source§

impl Add<Wrapping<isize>> for &Wrapping<isize>

1.14.0 (const: unstable) · Source§

impl Add<Wrapping<u8>> for &Wrapping<u8>

1.14.0 (const: unstable) · Source§

impl Add<Wrapping<u16>> for &Wrapping<u16>

1.14.0 (const: unstable) · Source§

impl Add<Wrapping<u32>> for &Wrapping<u32>

1.14.0 (const: unstable) · Source§

impl Add<Wrapping<u64>> for &Wrapping<u64>

1.14.0 (const: unstable) · Source§

impl Add<Wrapping<u128>> for &Wrapping<u128>

1.14.0 (const: unstable) · Source§

impl Add<Wrapping<usize>> for &Wrapping<usize>

Source§

impl Add<bf16> for &bf16

Source§

impl Add<Complex<f32>> for f32

Source§

impl Add<Complex<f64>> for f64

Source§

impl Add<Complex<i8>> for i8

Source§

impl Add<Complex<i16>> for i16

Source§

impl Add<Complex<i32>> for i32

Source§

impl Add<Complex<i64>> for i64

Source§

impl Add<Complex<i128>> for i128

Source§

impl Add<Complex<isize>> for isize

Source§

impl Add<Complex<u8>> for u8

Source§

impl Add<Complex<u16>> for u16

Source§

impl Add<Complex<u32>> for u32

Source§

impl Add<Complex<u64>> for u64

Source§

impl Add<Complex<u128>> for u128

Source§

impl Add<Complex<usize>> for usize

Source§

impl Add<B0> for UTerm

UTerm + B0 = UTerm

Source§

impl Add<B1> for UTerm

UTerm + B1 = UInt<UTerm, B1>

Source§

impl Add<f32x4> for f32

Source§

impl Add<f32x8> for f32

Source§

impl Add<f64x2> for f64

Source§

impl Add<f64x4> for f64

Source§

impl Add<i8x16> for i8

Source§

impl Add<i8x32> for i8

Source§

impl Add<i16x8> for i16

Source§

impl Add<i16x16> for i16

Source§

impl Add<i32x4> for i32

Source§

impl Add<i32x8> for i32

Source§

impl Add<i64x2> for i64

Source§

impl Add<i64x4> for i64

Source§

impl Add<u8x16> for u8

Source§

impl Add<u8x32> for u8

Source§

impl Add<u16x8> for u16

Source§

impl Add<u16x16> for u16

Source§

impl Add<u32x4> for u32

Source§

impl Add<u64x2> for u64

Source§

impl Add<u64x4> for u64

1.14.0 · Source§

impl<'a> Add for Cow<'a, str>

Available on non-no_global_oom_handling only.
Source§

type Output = Cow<'a, str>

1.14.0 · Source§

impl<'a> Add<&'a str> for Cow<'a, str>

Available on non-no_global_oom_handling only.
Source§

type Output = Cow<'a, str>

Source§

impl<'a> Add<&'a Complex<f32>> for f32

Source§

impl<'a> Add<&'a Complex<f64>> for f64

Source§

impl<'a> Add<&'a Complex<i8>> for i8

Source§

impl<'a> Add<&'a Complex<i16>> for i16

Source§

impl<'a> Add<&'a Complex<i32>> for i32

Source§

impl<'a> Add<&'a Complex<i64>> for i64

Source§

impl<'a> Add<&'a Complex<i128>> for i128

Source§

impl<'a> Add<&'a Complex<isize>> for isize

Source§

impl<'a> Add<&'a Complex<u8>> for u8

Source§

impl<'a> Add<&'a Complex<u16>> for u16

Source§

impl<'a> Add<&'a Complex<u32>> for u32

Source§

impl<'a> Add<&'a Complex<u64>> for u64

Source§

impl<'a> Add<&'a Complex<u128>> for u128

Source§

impl<'a> Add<&'a Complex<usize>> for usize

Source§

impl<'a> Add<Complex<f32>> for &'a f32

Source§

impl<'a> Add<Complex<f64>> for &'a f64

Source§

impl<'a> Add<Complex<i8>> for &'a i8

Source§

impl<'a> Add<Complex<i16>> for &'a i16

Source§

impl<'a> Add<Complex<i32>> for &'a i32

Source§

impl<'a> Add<Complex<i64>> for &'a i64

Source§

impl<'a> Add<Complex<i128>> for &'a i128

Source§

impl<'a> Add<Complex<isize>> for &'a isize

Source§

impl<'a> Add<Complex<u8>> for &'a u8

Source§

impl<'a> Add<Complex<u16>> for &'a u16

Source§

impl<'a> Add<Complex<u32>> for &'a u32

Source§

impl<'a> Add<Complex<u64>> for &'a u64

Source§

impl<'a> Add<Complex<u128>> for &'a u128

Source§

impl<'a> Add<Complex<usize>> for &'a usize

Source§

impl<'a, 'b> Add<&'a Complex<f32>> for &'b f32

Source§

impl<'a, 'b> Add<&'a Complex<f64>> for &'b f64

Source§

impl<'a, 'b> Add<&'a Complex<i8>> for &'b i8

Source§

impl<'a, 'b> Add<&'a Complex<i16>> for &'b i16

Source§

impl<'a, 'b> Add<&'a Complex<i32>> for &'b i32

Source§

impl<'a, 'b> Add<&'a Complex<i64>> for &'b i64

Source§

impl<'a, 'b> Add<&'a Complex<i128>> for &'b i128

Source§

impl<'a, 'b> Add<&'a Complex<isize>> for &'b isize

Source§

impl<'a, 'b> Add<&'a Complex<u8>> for &'b u8

Source§

impl<'a, 'b> Add<&'a Complex<u16>> for &'b u16

Source§

impl<'a, 'b> Add<&'a Complex<u32>> for &'b u32

Source§

impl<'a, 'b> Add<&'a Complex<u64>> for &'b u64

Source§

impl<'a, 'b> Add<&'a Complex<u128>> for &'b u128

Source§

impl<'a, 'b> Add<&'a Complex<usize>> for &'b usize

Source§

impl<'a, 'b, T> Add<&'b DualQuaternion<T>> for &'a DualQuaternion<T>

Source§

impl<'a, 'b, T> Add<&'b Quaternion<T>> for &'a Quaternion<T>

Source§

impl<'a, 'b, T> Add<&'b Complex<T>> for &'a Complex<T>
where T: Clone + Num,

Source§

impl<'a, 'b, T> Add<&'b Ratio<T>> for &'a Ratio<T>
where T: Clone + Integer,

Source§

impl<'a, 'b, T> Add<&'a T> for &'b Complex<T>
where T: Clone + Num,

Source§

impl<'a, 'b, T> Add<&'b T> for &'a Ratio<T>
where T: Clone + Integer,

Source§

impl<'a, 'b, T, D1, D2, SB> Add<&'b Matrix<T, D2, Const<1>, SB>> for &'a OPoint<T, D1>
where T: Scalar + ClosedAddAssign, ShapeConstraint: SameNumberOfRows<D1, D2, Representative = D1> + SameNumberOfColumns<Const<1>, Const<1>, Representative = Const<1>>, D1: DimName, D2: Dim, SB: Storage<T, D2>, DefaultAllocator: Allocator<D1>,

Source§

type Output = OPoint<T, D1>

Source§

impl<'a, 'b, T, R1, C1, R2, C2, SA, SB> Add<&'b Matrix<T, R2, C2, SB>> for &'a Matrix<T, R1, C1, SA>
where R1: Dim, C1: Dim, R2: Dim, C2: Dim, T: Scalar + ClosedAddAssign, SA: Storage<T, R1, C1>, SB: Storage<T, R2, C2>, DefaultAllocator: SameShapeAllocator<R1, C1, R2, C2>, ShapeConstraint: SameNumberOfRows<R1, R2> + SameNumberOfColumns<C1, C2>,

Source§

impl<'a, T> Add<&'a Complex<T>> for Complex<T>
where T: Clone + Num,

Source§

impl<'a, T> Add<&'a Ratio<T>> for Ratio<T>
where T: Clone + Integer,

Source§

impl<'a, T> Add<&'a T> for Complex<T>
where T: Clone + Num,

Source§

impl<'a, T> Add<&'a T> for Ratio<T>
where T: Clone + Integer,

Source§

impl<'a, T> Add<DualQuaternion<T>> for &'a DualQuaternion<T>

Source§

impl<'a, T> Add<Quaternion<T>> for &'a Quaternion<T>

Source§

impl<'a, T> Add<Complex<T>> for &'a Complex<T>
where T: Clone + Num,

Source§

impl<'a, T> Add<Ratio<T>> for &'a Ratio<T>
where T: Clone + Integer,

Source§

impl<'a, T> Add<T> for &'a Complex<T>
where T: Clone + Num,

Source§

impl<'a, T> Add<T> for &'a Ratio<T>
where T: Clone + Integer,

Source§

impl<'a, T, D1, D2, SB> Add<Matrix<T, D2, Const<1>, SB>> for &'a OPoint<T, D1>
where T: Scalar + ClosedAddAssign, ShapeConstraint: SameNumberOfRows<D1, D2, Representative = D1> + SameNumberOfColumns<Const<1>, Const<1>, Representative = Const<1>>, D1: DimName, D2: Dim, SB: Storage<T, D2>, DefaultAllocator: Allocator<D1>,

Source§

type Output = OPoint<T, D1>

Source§

impl<'a, T, R1, C1, R2, C2, SA, SB> Add<Matrix<T, R2, C2, SB>> for &'a Matrix<T, R1, C1, SA>
where R1: Dim, C1: Dim, R2: Dim, C2: Dim, T: Scalar + ClosedAddAssign, SA: Storage<T, R1, C1>, SB: Storage<T, R2, C2>, DefaultAllocator: SameShapeAllocator<R2, C2, R1, C1>, ShapeConstraint: SameNumberOfRows<R2, R1> + SameNumberOfColumns<C2, C1>,

Source§

impl<'b, T> Add<&'b DualQuaternion<T>> for DualQuaternion<T>

Source§

impl<'b, T> Add<&'b Quaternion<T>> for Quaternion<T>

Source§

impl<'b, T, D1, D2, SB> Add<&'b Matrix<T, D2, Const<1>, SB>> for OPoint<T, D1>
where T: Scalar + ClosedAddAssign, ShapeConstraint: SameNumberOfRows<D1, D2, Representative = D1> + SameNumberOfColumns<Const<1>, Const<1>, Representative = Const<1>>, D1: DimName, D2: Dim, SB: Storage<T, D2>, DefaultAllocator: Allocator<D1>,

Source§

type Output = OPoint<T, D1>

Source§

impl<'b, T, R1, C1, R2, C2, SA, SB> Add<&'b Matrix<T, R2, C2, SB>> for Matrix<T, R1, C1, SA>
where R1: Dim, C1: Dim, R2: Dim, C2: Dim, T: Scalar + ClosedAddAssign, SA: Storage<T, R1, C1>, SB: Storage<T, R2, C2>, DefaultAllocator: SameShapeAllocator<R1, C1, R2, C2>, ShapeConstraint: SameNumberOfRows<R1, R2> + SameNumberOfColumns<C1, C2>,

Source§

impl<'lhs, 'rhs, T, const N: usize> Add<&'rhs Simd<T, N>> for &'lhs Simd<T, N>
where T: SimdElement, Simd<T, N>: Add<Output = Simd<T, N>>, LaneCount<N>: SupportedLaneCount,

Source§

type Output = Simd<T, N>

Source§

impl<Al, Vl, Ar, Vr> Add<TArr<Vr, Ar>> for TArr<Vl, Al>
where Al: Add<Ar>, Vl: Add<Vr>,

Source§

type Output = TArr<<Vl as Add<Vr>>::Output, <Al as Add<Ar>>::Output>

Source§

impl<I> Add<I> for Z0
where I: Integer,

Z0 + I = I

Source§

impl<O> Add for F32<O>
where O: ByteOrder,

Source§

impl<O> Add for F64<O>
where O: ByteOrder,

Source§

impl<O> Add for I16<O>
where O: ByteOrder,

Source§

impl<O> Add for I32<O>
where O: ByteOrder,

Source§

impl<O> Add for I64<O>
where O: ByteOrder,

Source§

impl<O> Add for I128<O>
where O: ByteOrder,

Source§

impl<O> Add for Isize<O>
where O: ByteOrder,

Source§

impl<O> Add for U16<O>
where O: ByteOrder,

Source§

impl<O> Add for U32<O>
where O: ByteOrder,

Source§

impl<O> Add for U64<O>
where O: ByteOrder,

Source§

impl<O> Add for U128<O>
where O: ByteOrder,

Source§

impl<O> Add for Usize<O>
where O: ByteOrder,

Source§

impl<O> Add<f32> for F32<O>
where O: ByteOrder,

Source§

impl<O> Add<f64> for F64<O>
where O: ByteOrder,

Source§

impl<O> Add<i16> for I16<O>
where O: ByteOrder,

Source§

impl<O> Add<i32> for I32<O>
where O: ByteOrder,

Source§

impl<O> Add<i64> for I64<O>
where O: ByteOrder,

Source§

impl<O> Add<i128> for I128<O>
where O: ByteOrder,

Source§

impl<O> Add<isize> for Isize<O>
where O: ByteOrder,

Source§

impl<O> Add<u16> for U16<O>
where O: ByteOrder,

Source§

impl<O> Add<u32> for U32<O>
where O: ByteOrder,

Source§

impl<O> Add<u64> for U64<O>
where O: ByteOrder,

Source§

impl<O> Add<u128> for U128<O>
where O: ByteOrder,

Source§

impl<O> Add<usize> for Usize<O>
where O: ByteOrder,

Source§

impl<O> Add<F32<O>> for f32
where O: ByteOrder,

Source§

impl<O> Add<F64<O>> for f64
where O: ByteOrder,

Source§

impl<O> Add<I16<O>> for i16
where O: ByteOrder,

Source§

impl<O> Add<I32<O>> for i32
where O: ByteOrder,

Source§

impl<O> Add<I64<O>> for i64
where O: ByteOrder,

Source§

impl<O> Add<I128<O>> for i128
where O: ByteOrder,

Source§

impl<O> Add<Isize<O>> for isize
where O: ByteOrder,

Source§

impl<O> Add<U16<O>> for u16
where O: ByteOrder,

Source§

impl<O> Add<U32<O>> for u32
where O: ByteOrder,

Source§

impl<O> Add<U64<O>> for u64
where O: ByteOrder,

Source§

impl<O> Add<U128<O>> for u128
where O: ByteOrder,

Source§

impl<O> Add<Usize<O>> for usize
where O: ByteOrder,

Source§

impl<T> Add for Vector3<T>
where T: Add<Output = T> + Copy,

Source§

impl<T> Add for Vector4<T>
where T: Add<Output = T> + Copy,

Source§

impl<T> Add for Rgb<T>
where T: Add<Output = T>,

Source§

impl<T> Add for DualQuaternion<T>

Source§

impl<T> Add for Quaternion<T>

Source§

impl<T> Add for Complex<T>
where T: Clone + Num,

Source§

impl<T> Add for Ratio<T>
where T: Clone + Integer,

Source§

impl<T> Add<T> for Vector3<T>
where T: Add<Output = T> + Copy,

Source§

impl<T> Add<T> for Vector4<T>
where T: Add<Output = T> + Copy,

Source§

impl<T> Add<T> for Rgb<T>
where T: Copy + Clone + Add<Output = T>,

Source§

impl<T> Add<T> for Complex<T>
where T: Clone + Num,

Source§

impl<T> Add<T> for Ratio<T>
where T: Clone + Integer,

Source§

impl<T, D1, D2, SB> Add<Matrix<T, D2, Const<1>, SB>> for OPoint<T, D1>
where T: Scalar + ClosedAddAssign, ShapeConstraint: SameNumberOfRows<D1, D2, Representative = D1> + SameNumberOfColumns<Const<1>, Const<1>, Representative = Const<1>>, D1: DimName, D2: Dim, SB: Storage<T, D2>, DefaultAllocator: Allocator<D1>,

Source§

type Output = OPoint<T, D1>

Source§

impl<T, R1, C1, R2, C2, SA, SB> Add<Matrix<T, R2, C2, SB>> for Matrix<T, R1, C1, SA>
where R1: Dim, C1: Dim, R2: Dim, C2: Dim, T: Scalar + ClosedAddAssign, SA: Storage<T, R1, C1>, SB: Storage<T, R2, C2>, DefaultAllocator: SameShapeAllocator<R1, C1, R2, C2>, ShapeConstraint: SameNumberOfRows<R1, R2> + SameNumberOfColumns<C1, C2>,

Source§

impl<T, const N: usize> Add<&Simd<T, N>> for Simd<T, N>
where T: SimdElement, Simd<T, N>: Add<Output = Simd<T, N>>, LaneCount<N>: SupportedLaneCount,

Source§

type Output = Simd<T, N>

Source§

impl<T, const N: usize> Add<Simd<T, N>> for &Simd<T, N>
where T: SimdElement, Simd<T, N>: Add<Output = Simd<T, N>>, LaneCount<N>: SupportedLaneCount,

Source§

type Output = Simd<T, N>

Source§

impl<U> Add<B1> for UInt<U, B0>
where U: Unsigned,

UInt<U, B0> + B1 = UInt<U + B1>

Source§

impl<U> Add<B1> for UInt<U, B1>
where U: Unsigned + Add<B1>, <U as Add<B1>>::Output: Unsigned,

UInt<U, B1> + B1 = UInt<U + B1, B0>

Source§

type Output = UInt<<U as Add<B1>>::Output, B0>

Source§

impl<U> Add<Z0> for NInt<U>
where U: Unsigned + NonZero,

NInt + Z0 = NInt

Source§

impl<U> Add<Z0> for PInt<U>
where U: Unsigned + NonZero,

PInt + Z0 = PInt

Source§

impl<U> Add<U> for UTerm
where U: Unsigned,

UTerm + U = U

Source§

impl<U, B> Add<B0> for UInt<U, B>
where U: Unsigned, B: Bit,

U + B0 = U

Source§

type Output = UInt<U, B>

Source§

impl<U, B> Add<UTerm> for UInt<U, B>
where U: Unsigned, B: Bit,

UInt<U, B> + UTerm = UInt<U, B>

Source§

type Output = UInt<U, B>

Source§

impl<Ul, Ur> Add<NInt<Ur>> for NInt<Ul>
where Ul: Unsigned + NonZero + Add<Ur>, Ur: Unsigned + NonZero, <Ul as Add<Ur>>::Output: Unsigned + NonZero,

N(Ul) + N(Ur) = N(Ul + Ur)

Source§

type Output = NInt<<Ul as Add<Ur>>::Output>

Source§

impl<Ul, Ur> Add<NInt<Ur>> for PInt<Ul>
where Ul: Unsigned + NonZero + Cmp<Ur> + PrivateIntegerAdd<<Ul as Cmp<Ur>>::Output, Ur>, Ur: Unsigned + NonZero,

P(Ul) + N(Ur): We resolve this with our PrivateAdd

Source§

type Output = <Ul as PrivateIntegerAdd<<Ul as Cmp<Ur>>::Output, Ur>>::Output

Source§

impl<Ul, Ur> Add<PInt<Ur>> for NInt<Ul>
where Ul: Unsigned + NonZero, Ur: Unsigned + NonZero + Cmp<Ul> + PrivateIntegerAdd<<Ur as Cmp<Ul>>::Output, Ul>,

N(Ul) + P(Ur): We resolve this with our PrivateAdd

Source§

type Output = <Ur as PrivateIntegerAdd<<Ur as Cmp<Ul>>::Output, Ul>>::Output

Source§

impl<Ul, Ur> Add<PInt<Ur>> for PInt<Ul>
where Ul: Unsigned + NonZero + Add<Ur>, Ur: Unsigned + NonZero, <Ul as Add<Ur>>::Output: Unsigned + NonZero,

P(Ul) + P(Ur) = P(Ul + Ur)

Source§

type Output = PInt<<Ul as Add<Ur>>::Output>

Source§

impl<Ul, Ur> Add<UInt<Ur, B0>> for UInt<Ul, B0>
where Ul: Unsigned + Add<Ur>, Ur: Unsigned,

UInt<Ul, B0> + UInt<Ur, B0> = UInt<Ul + Ur, B0>

Source§

type Output = UInt<<Ul as Add<Ur>>::Output, B0>

Source§

impl<Ul, Ur> Add<UInt<Ur, B0>> for UInt<Ul, B1>
where Ul: Unsigned + Add<Ur>, Ur: Unsigned,

UInt<Ul, B1> + UInt<Ur, B0> = UInt<Ul + Ur, B1>

Source§

type Output = UInt<<Ul as Add<Ur>>::Output, B1>

Source§

impl<Ul, Ur> Add<UInt<Ur, B1>> for UInt<Ul, B0>
where Ul: Unsigned + Add<Ur>, Ur: Unsigned,

UInt<Ul, B0> + UInt<Ur, B1> = UInt<Ul + Ur, B1>

Source§

type Output = UInt<<Ul as Add<Ur>>::Output, B1>

Source§

impl<Ul, Ur> Add<UInt<Ur, B1>> for UInt<Ul, B1>
where Ul: Unsigned + Add<Ur>, Ur: Unsigned, <Ul as Add<Ur>>::Output: Add<B1>,

UInt<Ul, B1> + UInt<Ur, B1> = UInt<(Ul + Ur) + B1, B0>

Source§

type Output = UInt<<<Ul as Add<Ur>>::Output as Add<B1>>::Output, B0>

Source§

impl<const N: usize> Add for Simd<f32, N>

Source§

impl<const N: usize> Add for Simd<f64, N>

Source§

impl<const N: usize> Add for Simd<i8, N>

Source§

impl<const N: usize> Add for Simd<i16, N>

Source§

impl<const N: usize> Add for Simd<i32, N>

Source§

impl<const N: usize> Add for Simd<i64, N>

Source§

impl<const N: usize> Add for Simd<isize, N>

Source§

impl<const N: usize> Add for Simd<u8, N>

Source§

impl<const N: usize> Add for Simd<u16, N>

Source§

impl<const N: usize> Add for Simd<u32, N>

Source§

impl<const N: usize> Add for Simd<u64, N>

Source§

impl<const N: usize> Add for Simd<usize, N>