Struct num_complex::Complex[][src]

#[repr(C)]
pub struct Complex<T> { pub re: T, pub im: T, }

A complex number in Cartesian form.

Representation and Foreign Function Interface Compatibility

Complex<T> is memory layout compatible with an array [T; 2].

Note that Complex<F> where F is a floating point type is only memory layout compatible with C's complex types, not necessarily calling convention compatible. This means that for FFI you can only pass Complex<F> behind a pointer, not as a value.

Examples

Example of extern function declaration.

use num_complex::Complex;
use std::os::raw::c_int;

extern "C" {
    fn zaxpy_(n: *const c_int, alpha: *const Complex<f64>,
              x: *const Complex<f64>, incx: *const c_int,
              y: *mut Complex<f64>, incy: *const c_int);
}

Fields

Real portion of the complex number

Imaginary portion of the complex number

Methods

impl<T: Clone + Num> Complex<T>
[src]

Create a new Complex

Returns imaginary unit

Returns the square of the norm (since T doesn't necessarily have a sqrt function), i.e. re^2 + im^2.

Multiplies self by the scalar t.

Divides self by the scalar t.

impl<T: Clone + Num + Neg<Output = T>> Complex<T>
[src]

Returns the complex conjugate. i.e. re - i im

Returns 1/self

impl<T: Clone + Float> Complex<T>
[src]

Calculate |self|

Calculate the principal Arg of self.

Convert to polar form (r, theta), such that self = r * exp(i * theta)

Convert a polar representation into a complex number.

Computes e^(self), where e is the base of the natural logarithm.

Computes the principal value of natural logarithm of self.

This function has one branch cut:

  • (-∞, 0], continuous from above.

The branch satisfies -π ≤ arg(ln(z)) ≤ π.

Computes the principal value of the square root of self.

This function has one branch cut:

  • (-∞, 0), continuous from above.

The branch satisfies -π/2 ≤ arg(sqrt(z)) ≤ π/2.

Raises self to a floating point power.

Returns the logarithm of self with respect to an arbitrary base.

Raises self to a complex power.

Raises a floating point number to the complex power self.

Computes the sine of self.

Computes the cosine of self.

Computes the tangent of self.

Computes the principal value of the inverse sine of self.

This function has two branch cuts:

  • (-∞, -1), continuous from above.
  • (1, ∞), continuous from below.

The branch satisfies -π/2 ≤ Re(asin(z)) ≤ π/2.

Computes the principal value of the inverse cosine of self.

This function has two branch cuts:

  • (-∞, -1), continuous from above.
  • (1, ∞), continuous from below.

The branch satisfies 0 ≤ Re(acos(z)) ≤ π.

Computes the principal value of the inverse tangent of self.

This function has two branch cuts:

  • (-∞i, -i], continuous from the left.
  • [i, ∞i), continuous from the right.

The branch satisfies -π/2 ≤ Re(atan(z)) ≤ π/2.

Computes the hyperbolic sine of self.

Computes the hyperbolic cosine of self.

Computes the hyperbolic tangent of self.

Computes the principal value of inverse hyperbolic sine of self.

This function has two branch cuts:

  • (-∞i, -i), continuous from the left.
  • (i, ∞i), continuous from the right.

The branch satisfies -π/2 ≤ Im(asinh(z)) ≤ π/2.

Computes the principal value of inverse hyperbolic cosine of self.

This function has one branch cut:

  • (-∞, 1), continuous from above.

The branch satisfies -π ≤ Im(acosh(z)) ≤ π and 0 ≤ Re(acosh(z)) < ∞.

Computes the principal value of inverse hyperbolic tangent of self.

This function has two branch cuts:

  • (-∞, -1], continuous from above.
  • [1, ∞), continuous from below.

The branch satisfies -π/2 ≤ Im(atanh(z)) ≤ π/2.

impl<T: Clone + FloatCore> Complex<T>
[src]

Checks if the given complex number is NaN

Checks if the given complex number is infinite

Checks if the given complex number is finite

Checks if the given complex number is normal

Trait Implementations

impl<T: ToPrimitive + Num> ToPrimitive for Complex<T>
[src]

Converts the value of self to a usize.

Converts the value of self to an isize.

Converts the value of self to an u8.

Converts the value of self to an u16.

Converts the value of self to an u32.

Converts the value of self to an u64.

Converts the value of self to an i8.

Converts the value of self to an i16.

Converts the value of self to an i32.

Converts the value of self to an i64.

Converts the value of self to an u128. Read more

Converts the value of self to an i128. Read more

Converts the value of self to an f32.

Converts the value of self to an f64.

impl<T: FromPrimitive + Num> FromPrimitive for Complex<T>
[src]

Convert a usize to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

Convert an isize to return an optional value of this type. If the value cannot be represented by this value, then None is returned. Read more

Convert an u8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

Convert an u16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

Convert an u32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

Convert an u64 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

Convert an i8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

Convert an i16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

Convert an i32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

Convert an i64 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

Convert an u128 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

Convert an i128 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

Convert a f32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

Convert a f64 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

impl<T: NumCast + Num> NumCast for Complex<T>
[src]

Creates a number from another value that can be converted into a primitive via the ToPrimitive trait. Read more

impl<T, U> AsPrimitive<U> for Complex<T> where
    T: AsPrimitive<U>,
    U: 'static + Copy
[src]

Convert a value to another, using the as operator.

impl<T> Distribution<Complex<T>> for Standard where
    T: Num + Clone,
    Standard: Distribution<T>, 
[src]

Generate a random value of T, using rng as the source of randomness.

Create an iterator that generates random values of T, using rng as the source of randomness. Read more

impl<T, Re, Im> Distribution<Complex<T>> for ComplexDistribution<Re, Im> where
    T: Num + Clone,
    Re: Distribution<T>,
    Im: Distribution<T>, 
[src]

Generate a random value of T, using rng as the source of randomness.

Create an iterator that generates random values of T, using rng as the source of randomness. Read more

impl<T: Clone + NumAssign> AddAssign for Complex<T>
[src]

Performs the += operation.

impl<T: Clone + NumAssign> SubAssign for Complex<T>
[src]

Performs the -= operation.

impl<T: Clone + NumAssign> MulAssign for Complex<T>
[src]

Performs the *= operation.

impl<T: Clone + NumAssign> DivAssign for Complex<T>
[src]

Performs the /= operation.

impl<T: Clone + NumAssign> RemAssign for Complex<T>
[src]

Performs the %= operation.

impl<T: Clone + NumAssign> AddAssign<T> for Complex<T>
[src]

Performs the += operation.

impl<T: Clone + NumAssign> SubAssign<T> for Complex<T>
[src]

Performs the -= operation.

impl<T: Clone + NumAssign> MulAssign<T> for Complex<T>
[src]

Performs the *= operation.

impl<T: Clone + NumAssign> DivAssign<T> for Complex<T>
[src]

Performs the /= operation.

impl<T: Clone + NumAssign> RemAssign<T> for Complex<T>
[src]

Performs the %= operation.

impl<'a, T: Clone + NumAssign> AddAssign<&'a Complex<T>> for Complex<T>
[src]

Performs the += operation.

impl<'a, T: Clone + NumAssign> AddAssign<&'a T> for Complex<T>
[src]

Performs the += operation.

impl<'a, T: Clone + NumAssign> SubAssign<&'a Complex<T>> for Complex<T>
[src]

Performs the -= operation.

impl<'a, T: Clone + NumAssign> SubAssign<&'a T> for Complex<T>
[src]

Performs the -= operation.

impl<'a, T: Clone + NumAssign> MulAssign<&'a Complex<T>> for Complex<T>
[src]

Performs the *= operation.

impl<'a, T: Clone + NumAssign> MulAssign<&'a T> for Complex<T>
[src]

Performs the *= operation.

impl<'a, T: Clone + NumAssign> DivAssign<&'a Complex<T>> for Complex<T>
[src]

Performs the /= operation.

impl<'a, T: Clone + NumAssign> DivAssign<&'a T> for Complex<T>
[src]

Performs the /= operation.

impl<'a, T: Clone + NumAssign> RemAssign<&'a Complex<T>> for Complex<T>
[src]

Performs the %= operation.

impl<'a, T: Clone + NumAssign> RemAssign<&'a T> for Complex<T>
[src]

Performs the %= operation.

impl<T: PartialEq> PartialEq for Complex<T>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<T: Eq> Eq for Complex<T>
[src]

impl<T: Copy> Copy for Complex<T>
[src]

impl<T: Clone> Clone for Complex<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: Hash> Hash for Complex<T>
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl<T: Debug> Debug for Complex<T>
[src]

Formats the value using the given formatter. Read more

impl<T: Default> Default for Complex<T>
[src]

Returns the "default value" for a type. Read more

impl<T: Clone + Num> From<T> for Complex<T>
[src]

Performs the conversion.

impl<'a, T: Clone + Num> From<&'a T> for Complex<T>
[src]

Performs the conversion.

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

The resulting type after applying the + operator.

Performs the + operation.

impl<'a, T: Clone + Num> Add<Complex<T>> for &'a Complex<T>
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<'a, T: Clone + Num> Add<&'a Complex<T>> for Complex<T>
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<T: Clone + Num> Add<Complex<T>> for Complex<T>
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<'a, 'b, T: Clone + Num> Sub<&'b Complex<T>> for &'a Complex<T>
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a, T: Clone + Num> Sub<Complex<T>> for &'a Complex<T>
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a, T: Clone + Num> Sub<&'a Complex<T>> for Complex<T>
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<T: Clone + Num> Sub<Complex<T>> for Complex<T>
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a, 'b, T: Clone + Num> Mul<&'b Complex<T>> for &'a Complex<T>
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, T: Clone + Num> Mul<Complex<T>> for &'a Complex<T>
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, T: Clone + Num> Mul<&'a Complex<T>> for Complex<T>
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<T: Clone + Num> Mul<Complex<T>> for Complex<T>
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, 'b, T: Clone + Num> Div<&'b Complex<T>> for &'a Complex<T>
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, T: Clone + Num> Div<Complex<T>> for &'a Complex<T>
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, T: Clone + Num> Div<&'a Complex<T>> for Complex<T>
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<T: Clone + Num> Div<Complex<T>> for Complex<T>
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, 'b, T: Clone + Num> Rem<&'b Complex<T>> for &'a Complex<T>
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a, T: Clone + Num> Rem<Complex<T>> for &'a Complex<T>
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a, T: Clone + Num> Rem<&'a Complex<T>> for Complex<T>
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<T: Clone + Num> Rem<Complex<T>> for Complex<T>
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<T: Clone + Num + Neg<Output = T>> Neg for Complex<T>
[src]

The resulting type after applying the - operator.

Performs the unary - operation.

impl<'a, T: Clone + Num + Neg<Output = T>> Neg for &'a Complex<T>
[src]

The resulting type after applying the - operator.

Performs the unary - operation.

impl<T: Clone + Num + Neg<Output = T>> Inv for Complex<T>
[src]

The result after applying the operator.

Returns the multiplicative inverse of self. Read more

impl<'a, T: Clone + Num + Neg<Output = T>> Inv for &'a Complex<T>
[src]

The result after applying the operator.

Returns the multiplicative inverse of self. Read more

impl<T: Clone + Num> Add<T> for Complex<T>
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<T: Clone + Num> Sub<T> for Complex<T>
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<T: Clone + Num> Mul<T> for Complex<T>
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<T: Clone + Num> Div<T> for Complex<T>
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<T: Clone + Num> Rem<T> for Complex<T>
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a, T: Clone + Num> Add<&'a T> for Complex<T>
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<'a, T: Clone + Num> Add<T> for &'a Complex<T>
[src]

The resulting type after applying the + operator.

Performs the + operation.

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

The resulting type after applying the + operator.

Performs the + operation.

impl<'a> Add<&'a Complex<usize>> for usize
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<'a> Add<Complex<usize>> for &'a usize
[src]

The resulting type after applying the + operator.

Performs the + operation.

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

The resulting type after applying the + operator.

Performs the + operation.

impl<'a> Add<&'a Complex<u8>> for u8
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<'a> Add<Complex<u8>> for &'a u8
[src]

The resulting type after applying the + operator.

Performs the + operation.

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

The resulting type after applying the + operator.

Performs the + operation.

impl<'a> Add<&'a Complex<u16>> for u16
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<'a> Add<Complex<u16>> for &'a u16
[src]

The resulting type after applying the + operator.

Performs the + operation.

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

The resulting type after applying the + operator.

Performs the + operation.

impl<'a> Add<&'a Complex<u32>> for u32
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<'a> Add<Complex<u32>> for &'a u32
[src]

The resulting type after applying the + operator.

Performs the + operation.

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

The resulting type after applying the + operator.

Performs the + operation.

impl<'a> Add<&'a Complex<u64>> for u64
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<'a> Add<Complex<u64>> for &'a u64
[src]

The resulting type after applying the + operator.

Performs the + operation.

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

The resulting type after applying the + operator.

Performs the + operation.

impl<'a> Add<&'a Complex<u128>> for u128
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<'a> Add<Complex<u128>> for &'a u128
[src]

The resulting type after applying the + operator.

Performs the + operation.

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

The resulting type after applying the + operator.

Performs the + operation.

impl<'a> Add<&'a Complex<isize>> for isize
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<'a> Add<Complex<isize>> for &'a isize
[src]

The resulting type after applying the + operator.

Performs the + operation.

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

The resulting type after applying the + operator.

Performs the + operation.

impl<'a> Add<&'a Complex<i8>> for i8
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<'a> Add<Complex<i8>> for &'a i8
[src]

The resulting type after applying the + operator.

Performs the + operation.

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

The resulting type after applying the + operator.

Performs the + operation.

impl<'a> Add<&'a Complex<i16>> for i16
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<'a> Add<Complex<i16>> for &'a i16
[src]

The resulting type after applying the + operator.

Performs the + operation.

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

The resulting type after applying the + operator.

Performs the + operation.

impl<'a> Add<&'a Complex<i32>> for i32
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<'a> Add<Complex<i32>> for &'a i32
[src]

The resulting type after applying the + operator.

Performs the + operation.

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

The resulting type after applying the + operator.

Performs the + operation.

impl<'a> Add<&'a Complex<i64>> for i64
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<'a> Add<Complex<i64>> for &'a i64
[src]

The resulting type after applying the + operator.

Performs the + operation.

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

The resulting type after applying the + operator.

Performs the + operation.

impl<'a> Add<&'a Complex<i128>> for i128
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<'a> Add<Complex<i128>> for &'a i128
[src]

The resulting type after applying the + operator.

Performs the + operation.

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

The resulting type after applying the + operator.

Performs the + operation.

impl<'a> Add<&'a Complex<f32>> for f32
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<'a> Add<Complex<f32>> for &'a f32
[src]

The resulting type after applying the + operator.

Performs the + operation.

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

The resulting type after applying the + operator.

Performs the + operation.

impl<'a> Add<&'a Complex<f64>> for f64
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<'a> Add<Complex<f64>> for &'a f64
[src]

The resulting type after applying the + operator.

Performs the + operation.

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

The resulting type after applying the + operator.

Performs the + operation.

impl<'a, T: Clone + Num> Sub<&'a T> for Complex<T>
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a, T: Clone + Num> Sub<T> for &'a Complex<T>
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a, 'b, T: Clone + Num> Sub<&'a T> for &'b Complex<T>
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a> Sub<&'a Complex<usize>> for usize
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a> Sub<Complex<usize>> for &'a usize
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a, 'b> Sub<&'a Complex<usize>> for &'b usize
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a> Sub<&'a Complex<u8>> for u8
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a> Sub<Complex<u8>> for &'a u8
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a, 'b> Sub<&'a Complex<u8>> for &'b u8
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a> Sub<&'a Complex<u16>> for u16
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a> Sub<Complex<u16>> for &'a u16
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a, 'b> Sub<&'a Complex<u16>> for &'b u16
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a> Sub<&'a Complex<u32>> for u32
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a> Sub<Complex<u32>> for &'a u32
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a, 'b> Sub<&'a Complex<u32>> for &'b u32
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a> Sub<&'a Complex<u64>> for u64
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a> Sub<Complex<u64>> for &'a u64
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a, 'b> Sub<&'a Complex<u64>> for &'b u64
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a> Sub<&'a Complex<u128>> for u128
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a> Sub<Complex<u128>> for &'a u128
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a, 'b> Sub<&'a Complex<u128>> for &'b u128
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a> Sub<&'a Complex<isize>> for isize
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a> Sub<Complex<isize>> for &'a isize
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a, 'b> Sub<&'a Complex<isize>> for &'b isize
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a> Sub<&'a Complex<i8>> for i8
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a> Sub<Complex<i8>> for &'a i8
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a, 'b> Sub<&'a Complex<i8>> for &'b i8
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a> Sub<&'a Complex<i16>> for i16
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a> Sub<Complex<i16>> for &'a i16
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a, 'b> Sub<&'a Complex<i16>> for &'b i16
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a> Sub<&'a Complex<i32>> for i32
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a> Sub<Complex<i32>> for &'a i32
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a, 'b> Sub<&'a Complex<i32>> for &'b i32
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a> Sub<&'a Complex<i64>> for i64
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a> Sub<Complex<i64>> for &'a i64
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a, 'b> Sub<&'a Complex<i64>> for &'b i64
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a> Sub<&'a Complex<i128>> for i128
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a> Sub<Complex<i128>> for &'a i128
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a, 'b> Sub<&'a Complex<i128>> for &'b i128
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a> Sub<&'a Complex<f32>> for f32
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a> Sub<Complex<f32>> for &'a f32
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a, 'b> Sub<&'a Complex<f32>> for &'b f32
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a> Sub<&'a Complex<f64>> for f64
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a> Sub<Complex<f64>> for &'a f64
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a, 'b> Sub<&'a Complex<f64>> for &'b f64
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a, T: Clone + Num> Mul<&'a T> for Complex<T>
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, T: Clone + Num> Mul<T> for &'a Complex<T>
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, 'b, T: Clone + Num> Mul<&'a T> for &'b Complex<T>
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a> Mul<&'a Complex<usize>> for usize
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a> Mul<Complex<usize>> for &'a usize
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, 'b> Mul<&'a Complex<usize>> for &'b usize
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a> Mul<&'a Complex<u8>> for u8
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a> Mul<Complex<u8>> for &'a u8
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, 'b> Mul<&'a Complex<u8>> for &'b u8
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a> Mul<&'a Complex<u16>> for u16
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a> Mul<Complex<u16>> for &'a u16
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, 'b> Mul<&'a Complex<u16>> for &'b u16
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a> Mul<&'a Complex<u32>> for u32
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a> Mul<Complex<u32>> for &'a u32
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, 'b> Mul<&'a Complex<u32>> for &'b u32
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a> Mul<&'a Complex<u64>> for u64
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a> Mul<Complex<u64>> for &'a u64
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, 'b> Mul<&'a Complex<u64>> for &'b u64
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a> Mul<&'a Complex<u128>> for u128
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a> Mul<Complex<u128>> for &'a u128
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, 'b> Mul<&'a Complex<u128>> for &'b u128
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a> Mul<&'a Complex<isize>> for isize
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a> Mul<Complex<isize>> for &'a isize
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, 'b> Mul<&'a Complex<isize>> for &'b isize
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a> Mul<&'a Complex<i8>> for i8
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a> Mul<Complex<i8>> for &'a i8
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, 'b> Mul<&'a Complex<i8>> for &'b i8
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a> Mul<&'a Complex<i16>> for i16
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a> Mul<Complex<i16>> for &'a i16
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, 'b> Mul<&'a Complex<i16>> for &'b i16
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a> Mul<&'a Complex<i32>> for i32
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a> Mul<Complex<i32>> for &'a i32
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, 'b> Mul<&'a Complex<i32>> for &'b i32
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a> Mul<&'a Complex<i64>> for i64
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a> Mul<Complex<i64>> for &'a i64
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, 'b> Mul<&'a Complex<i64>> for &'b i64
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a> Mul<&'a Complex<i128>> for i128
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a> Mul<Complex<i128>> for &'a i128
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, 'b> Mul<&'a Complex<i128>> for &'b i128
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a> Mul<&'a Complex<f32>> for f32
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a> Mul<Complex<f32>> for &'a f32
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, 'b> Mul<&'a Complex<f32>> for &'b f32
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a> Mul<&'a Complex<f64>> for f64
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a> Mul<Complex<f64>> for &'a f64
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, 'b> Mul<&'a Complex<f64>> for &'b f64
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, T: Clone + Num> Div<&'a T> for Complex<T>
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, T: Clone + Num> Div<T> for &'a Complex<T>
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, 'b, T: Clone + Num> Div<&'a T> for &'b Complex<T>
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a> Div<&'a Complex<usize>> for usize
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a> Div<Complex<usize>> for &'a usize
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, 'b> Div<&'a Complex<usize>> for &'b usize
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a> Div<&'a Complex<u8>> for u8
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a> Div<Complex<u8>> for &'a u8
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, 'b> Div<&'a Complex<u8>> for &'b u8
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a> Div<&'a Complex<u16>> for u16
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a> Div<Complex<u16>> for &'a u16
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, 'b> Div<&'a Complex<u16>> for &'b u16
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a> Div<&'a Complex<u32>> for u32
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a> Div<Complex<u32>> for &'a u32
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, 'b> Div<&'a Complex<u32>> for &'b u32
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a> Div<&'a Complex<u64>> for u64
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a> Div<Complex<u64>> for &'a u64
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, 'b> Div<&'a Complex<u64>> for &'b u64
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a> Div<&'a Complex<u128>> for u128
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a> Div<Complex<u128>> for &'a u128
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, 'b> Div<&'a Complex<u128>> for &'b u128
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a> Div<&'a Complex<isize>> for isize
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a> Div<Complex<isize>> for &'a isize
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, 'b> Div<&'a Complex<isize>> for &'b isize
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a> Div<&'a Complex<i8>> for i8
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a> Div<Complex<i8>> for &'a i8
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, 'b> Div<&'a Complex<i8>> for &'b i8
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a> Div<&'a Complex<i16>> for i16
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a> Div<Complex<i16>> for &'a i16
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, 'b> Div<&'a Complex<i16>> for &'b i16
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a> Div<&'a Complex<i32>> for i32
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a> Div<Complex<i32>> for &'a i32
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, 'b> Div<&'a Complex<i32>> for &'b i32
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a> Div<&'a Complex<i64>> for i64
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a> Div<Complex<i64>> for &'a i64
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, 'b> Div<&'a Complex<i64>> for &'b i64
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a> Div<&'a Complex<i128>> for i128
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a> Div<Complex<i128>> for &'a i128
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, 'b> Div<&'a Complex<i128>> for &'b i128
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a> Div<&'a Complex<f32>> for f32
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a> Div<Complex<f32>> for &'a f32
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, 'b> Div<&'a Complex<f32>> for &'b f32
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a> Div<&'a Complex<f64>> for f64
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a> Div<Complex<f64>> for &'a f64
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, 'b> Div<&'a Complex<f64>> for &'b f64
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, T: Clone + Num> Rem<&'a T> for Complex<T>
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a, T: Clone + Num> Rem<T> for &'a Complex<T>
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a, 'b, T: Clone + Num> Rem<&'a T> for &'b Complex<T>
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a> Rem<&'a Complex<usize>> for usize
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a> Rem<Complex<usize>> for &'a usize
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a, 'b> Rem<&'a Complex<usize>> for &'b usize
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a> Rem<&'a Complex<u8>> for u8
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a> Rem<Complex<u8>> for &'a u8
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a, 'b> Rem<&'a Complex<u8>> for &'b u8
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a> Rem<&'a Complex<u16>> for u16
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a> Rem<Complex<u16>> for &'a u16
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a, 'b> Rem<&'a Complex<u16>> for &'b u16
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a> Rem<&'a Complex<u32>> for u32
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a> Rem<Complex<u32>> for &'a u32
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a, 'b> Rem<&'a Complex<u32>> for &'b u32
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a> Rem<&'a Complex<u64>> for u64
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a> Rem<Complex<u64>> for &'a u64
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a, 'b> Rem<&'a Complex<u64>> for &'b u64
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a> Rem<&'a Complex<u128>> for u128
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a> Rem<Complex<u128>> for &'a u128
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a, 'b> Rem<&'a Complex<u128>> for &'b u128
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a> Rem<&'a Complex<isize>> for isize
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a> Rem<Complex<isize>> for &'a isize
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a, 'b> Rem<&'a Complex<isize>> for &'b isize
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a> Rem<&'a Complex<i8>> for i8
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a> Rem<Complex<i8>> for &'a i8
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a, 'b> Rem<&'a Complex<i8>> for &'b i8
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a> Rem<&'a Complex<i16>> for i16
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a> Rem<Complex<i16>> for &'a i16
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a, 'b> Rem<&'a Complex<i16>> for &'b i16
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a> Rem<&'a Complex<i32>> for i32
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a> Rem<Complex<i32>> for &'a i32
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a, 'b> Rem<&'a Complex<i32>> for &'b i32
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a> Rem<&'a Complex<i64>> for i64
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a> Rem<Complex<i64>> for &'a i64
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a, 'b> Rem<&'a Complex<i64>> for &'b i64
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a> Rem<&'a Complex<i128>> for i128
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a> Rem<Complex<i128>> for &'a i128
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a, 'b> Rem<&'a Complex<i128>> for &'b i128
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a> Rem<&'a Complex<f32>> for f32
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a> Rem<Complex<f32>> for &'a f32
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a, 'b> Rem<&'a Complex<f32>> for &'b f32
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a> Rem<&'a Complex<f64>> for f64
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a> Rem<Complex<f64>> for &'a f64
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a, 'b> Rem<&'a Complex<f64>> for &'b f64
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl Add<Complex<usize>> for usize
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl Sub<Complex<usize>> for usize
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl Mul<Complex<usize>> for usize
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl Div<Complex<usize>> for usize
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl Rem<Complex<usize>> for usize
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl Add<Complex<u8>> for u8
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl Sub<Complex<u8>> for u8
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl Mul<Complex<u8>> for u8
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl Div<Complex<u8>> for u8
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl Rem<Complex<u8>> for u8
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl Add<Complex<u16>> for u16
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl Sub<Complex<u16>> for u16
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl Mul<Complex<u16>> for u16
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl Div<Complex<u16>> for u16
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl Rem<Complex<u16>> for u16
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl Add<Complex<u32>> for u32
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl Sub<Complex<u32>> for u32
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl Mul<Complex<u32>> for u32
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl Div<Complex<u32>> for u32
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl Rem<Complex<u32>> for u32
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl Add<Complex<u64>> for u64
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl Sub<Complex<u64>> for u64
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl Mul<Complex<u64>> for u64
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl Div<Complex<u64>> for u64
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl Rem<Complex<u64>> for u64
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl Add<Complex<u128>> for u128
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl Sub<Complex<u128>> for u128
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl Mul<Complex<u128>> for u128
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl Div<Complex<u128>> for u128
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl Rem<Complex<u128>> for u128
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl Add<Complex<isize>> for isize
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl Sub<Complex<isize>> for isize
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl Mul<Complex<isize>> for isize
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl Div<Complex<isize>> for isize
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl Rem<Complex<isize>> for isize
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl Add<Complex<i8>> for i8
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl Sub<Complex<i8>> for i8
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl Mul<Complex<i8>> for i8
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl Div<Complex<i8>> for i8
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl Rem<Complex<i8>> for i8
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl Add<Complex<i16>> for i16
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl Sub<Complex<i16>> for i16
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl Mul<Complex<i16>> for i16
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl Div<Complex<i16>> for i16
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl Rem<Complex<i16>> for i16
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl Add<Complex<i32>> for i32
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl Sub<Complex<i32>> for i32
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl Mul<Complex<i32>> for i32
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl Div<Complex<i32>> for i32
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl Rem<Complex<i32>> for i32
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl Add<Complex<i64>> for i64
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl Sub<Complex<i64>> for i64
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl Mul<Complex<i64>> for i64
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl Div<Complex<i64>> for i64
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl Rem<Complex<i64>> for i64
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl Add<Complex<i128>> for i128
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl Sub<Complex<i128>> for i128
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl Mul<Complex<i128>> for i128
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl Div<Complex<i128>> for i128
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl Rem<Complex<i128>> for i128
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl Add<Complex<f32>> for f32
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl Sub<Complex<f32>> for f32
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl Mul<Complex<f32>> for f32
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl Div<Complex<f32>> for f32
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl Rem<Complex<f32>> for f32
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl Add<Complex<f64>> for f64
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl Sub<Complex<f64>> for f64
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl Mul<Complex<f64>> for f64
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl Div<Complex<f64>> for f64
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl Rem<Complex<f64>> for f64
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<T: Clone + Num> Zero for Complex<T>
[src]

Returns the additive identity element of Self, 0. Read more

Returns true if self is equal to the additive identity.

impl<T: Clone + Num> One for Complex<T>
[src]

Returns the multiplicative identity element of Self, 1. Read more

Returns true if self is equal to the multiplicative identity. Read more

impl<T> Display for Complex<T> where
    T: Display + Num + PartialOrd + Clone
[src]

Formats the value using the given formatter. Read more

impl<T> LowerExp for Complex<T> where
    T: LowerExp + Num + PartialOrd + Clone
[src]

Formats the value using the given formatter.

impl<T> UpperExp for Complex<T> where
    T: UpperExp + Num + PartialOrd + Clone
[src]

Formats the value using the given formatter.

impl<T> LowerHex for Complex<T> where
    T: LowerHex + Num + PartialOrd + Clone
[src]

Formats the value using the given formatter.

impl<T> UpperHex for Complex<T> where
    T: UpperHex + Num + PartialOrd + Clone
[src]

Formats the value using the given formatter.

impl<T> Octal for Complex<T> where
    T: Octal + Num + PartialOrd + Clone
[src]

Formats the value using the given formatter.

impl<T> Binary for Complex<T> where
    T: Binary + Num + PartialOrd + Clone
[src]

Formats the value using the given formatter.

impl<T> FromStr for Complex<T> where
    T: FromStr + Num + Clone
[src]

The associated error which can be returned from parsing.

Parses a +/- bi; ai +/- b; a; or bi where a and b are of type T

impl<T: Num + Clone> Num for Complex<T>
[src]

Parses a +/- bi; ai +/- b; a; or bi where a and b are of type T

impl<T: Num + Clone> Sum for Complex<T>
[src]

Method which takes an iterator and generates Self from the elements by "summing up" the items. Read more

impl<'a, T: 'a + Num + Clone> Sum<&'a Complex<T>> for Complex<T>
[src]

Method which takes an iterator and generates Self from the elements by "summing up" the items. Read more

impl<T: Num + Clone> Product for Complex<T>
[src]

Method which takes an iterator and generates Self from the elements by multiplying the items. Read more

impl<'a, T: 'a + Num + Clone> Product<&'a Complex<T>> for Complex<T>
[src]

Method which takes an iterator and generates Self from the elements by multiplying the items. Read more

impl<T> Serialize for Complex<T> where
    T: Serialize
[src]

Serialize this value into the given Serde serializer. Read more

impl<'de, T> Deserialize<'de> for Complex<T> where
    T: Deserialize<'de> + Num + Clone
[src]

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations

impl<T> Send for Complex<T> where
    T: Send

impl<T> Sync for Complex<T> where
    T: Sync