Trait enso_prelude::Mul1.0.0[][src]

pub trait Mul<Rhs = Self> {
    type Output;
    #[must_use]
    fn mul(self, rhs: Rhs) -> Self::Output;
}
Expand description

The multiplication operator *.

Note that Rhs is Self by default, but this is not mandatory.

Examples

Multipliable rational numbers

use std::ops::Mul;

// By the fundamental theorem of arithmetic, rational numbers in lowest
// terms are unique. So, by keeping `Rational`s in reduced form, we can
// derive `Eq` and `PartialEq`.
#[derive(Debug, Eq, PartialEq)]
struct Rational {
    numerator: usize,
    denominator: usize,
}

impl Rational {
    fn new(numerator: usize, denominator: usize) -> Self {
        if denominator == 0 {
            panic!("Zero is an invalid denominator!");
        }

        // Reduce to lowest terms by dividing by the greatest common
        // divisor.
        let gcd = gcd(numerator, denominator);
        Self {
            numerator: numerator / gcd,
            denominator: denominator / gcd,
        }
    }
}

impl Mul for Rational {
    // The multiplication of rational numbers is a closed operation.
    type Output = Self;

    fn mul(self, rhs: Self) -> Self {
        let numerator = self.numerator * rhs.numerator;
        let denominator = self.denominator * rhs.denominator;
        Self::new(numerator, denominator)
    }
}

// Euclid's two-thousand-year-old algorithm for finding the greatest common
// divisor.
fn gcd(x: usize, y: usize) -> usize {
    let mut x = x;
    let mut y = y;
    while y != 0 {
        let t = y;
        y = x % y;
        x = t;
    }
    x
}

assert_eq!(Rational::new(1, 2), Rational::new(2, 4));
assert_eq!(Rational::new(2, 3) * Rational::new(3, 4),
           Rational::new(1, 2));

Multiplying vectors by scalars as in linear algebra

use std::ops::Mul;

struct Scalar { value: usize }

#[derive(Debug, PartialEq)]
struct Vector { value: Vec<usize> }

impl Mul<Scalar> for Vector {
    type Output = Self;

    fn mul(self, rhs: Scalar) -> Self::Output {
        Self { value: self.value.iter().map(|v| v * rhs.value).collect() }
    }
}

let vector = Vector { value: vec![2, 4, 6] };
let scalar = Scalar { value: 3 };
assert_eq!(vector * scalar, Vector { value: vec![6, 12, 18] });

Associated Types

type Output[src]

The resulting type after applying the * operator.

Required methods

#[must_use]
fn mul(self, rhs: Rhs) -> Self::Output
[src]

Performs the * operation.

Example

assert_eq!(12 * 2, 24);

Implementations on Foreign Types

impl<'_> Mul<&'_ i16> for i16[src]

type Output = <i16 as Mul<i16>>::Output

pub fn mul(self, other: &i16) -> <i16 as Mul<i16>>::Output[src]

impl<'_, '_> Mul<&'_ Wrapping<i8>> for &'_ Wrapping<i8>[src]

type Output = <Wrapping<i8> as Mul<Wrapping<i8>>>::Output

pub fn mul(
    self,
    other: &Wrapping<i8>
) -> <Wrapping<i8> as Mul<Wrapping<i8>>>::Output
[src]

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

type Output = <Wrapping<u8> as Mul<Wrapping<u8>>>::Output

pub fn mul(
    self,
    other: Wrapping<u8>
) -> <Wrapping<u8> as Mul<Wrapping<u8>>>::Output
[src]

impl<'_, '_> Mul<&'_ u64> for &'_ u64[src]

type Output = <u64 as Mul<u64>>::Output

pub fn mul(self, other: &u64) -> <u64 as Mul<u64>>::Output[src]

impl<'_, '_> Mul<&'_ Wrapping<i16>> for &'_ Wrapping<i16>[src]

type Output = <Wrapping<i16> as Mul<Wrapping<i16>>>::Output

pub fn mul(
    self,
    other: &Wrapping<i16>
) -> <Wrapping<i16> as Mul<Wrapping<i16>>>::Output
[src]

impl<'_, '_> Mul<&'_ f64> for &'_ f64[src]

type Output = <f64 as Mul<f64>>::Output

pub fn mul(self, other: &f64) -> <f64 as Mul<f64>>::Output[src]

impl<'_, '_> Mul<&'_ u8> for &'_ u8[src]

type Output = <u8 as Mul<u8>>::Output

pub fn mul(self, other: &u8) -> <u8 as Mul<u8>>::Output[src]

impl Mul<i128> for i128[src]

type Output = i128

pub fn mul(self, other: i128) -> i128[src]

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

type Output = <Wrapping<i128> as Mul<Wrapping<i128>>>::Output

pub fn mul(
    self,
    other: Wrapping<i128>
) -> <Wrapping<i128> as Mul<Wrapping<i128>>>::Output
[src]

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

type Output = Wrapping<u64>

pub fn mul(self, other: Wrapping<u64>) -> Wrapping<u64>[src]

impl<'_, '_> Mul<&'_ Wrapping<u64>> for &'_ Wrapping<u64>[src]

type Output = <Wrapping<u64> as Mul<Wrapping<u64>>>::Output

pub fn mul(
    self,
    other: &Wrapping<u64>
) -> <Wrapping<u64> as Mul<Wrapping<u64>>>::Output
[src]

impl<'_, '_> Mul<&'_ Wrapping<u16>> for &'_ Wrapping<u16>[src]

type Output = <Wrapping<u16> as Mul<Wrapping<u16>>>::Output

pub fn mul(
    self,
    other: &Wrapping<u16>
) -> <Wrapping<u16> as Mul<Wrapping<u16>>>::Output
[src]

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

type Output = <isize as Mul<isize>>::Output

pub fn mul(self, other: isize) -> <isize as Mul<isize>>::Output[src]

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

type Output = <i16 as Mul<i16>>::Output

pub fn mul(self, other: i16) -> <i16 as Mul<i16>>::Output[src]

impl<'_, '_> Mul<&'_ Wrapping<i128>> for &'_ Wrapping<i128>[src]

type Output = <Wrapping<i128> as Mul<Wrapping<i128>>>::Output

pub fn mul(
    self,
    other: &Wrapping<i128>
) -> <Wrapping<i128> as Mul<Wrapping<i128>>>::Output
[src]

impl<'_> Mul<&'_ usize> for usize[src]

type Output = <usize as Mul<usize>>::Output

pub fn mul(self, other: &usize) -> <usize as Mul<usize>>::Output[src]

impl<'_> Mul<&'_ f32> for f32[src]

type Output = <f32 as Mul<f32>>::Output

pub fn mul(self, other: &f32) -> <f32 as Mul<f32>>::Output[src]

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

type Output = <u128 as Mul<u128>>::Output

pub fn mul(self, other: u128) -> <u128 as Mul<u128>>::Output[src]

impl Mul<u32> for Duration[src]

type Output = Duration

pub fn mul(self, rhs: u32) -> Duration[src]

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

type Output = <u16 as Mul<u16>>::Output

pub fn mul(self, other: u16) -> <u16 as Mul<u16>>::Output[src]

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

type Output = Wrapping<u128>

pub fn mul(self, other: Wrapping<u128>) -> Wrapping<u128>[src]

impl<'_, '_> Mul<&'_ Wrapping<i32>> for &'_ Wrapping<i32>[src]

type Output = <Wrapping<i32> as Mul<Wrapping<i32>>>::Output

pub fn mul(
    self,
    other: &Wrapping<i32>
) -> <Wrapping<i32> as Mul<Wrapping<i32>>>::Output
[src]

impl<'_> Mul<&'_ Wrapping<u16>> for Wrapping<u16>[src]

type Output = <Wrapping<u16> as Mul<Wrapping<u16>>>::Output

pub fn mul(
    self,
    other: &Wrapping<u16>
) -> <Wrapping<u16> as Mul<Wrapping<u16>>>::Output
[src]

impl Mul<i16> for i16[src]

type Output = i16

pub fn mul(self, other: i16) -> i16[src]

impl<'_> Mul<&'_ u16> for u16[src]

type Output = <u16 as Mul<u16>>::Output

pub fn mul(self, other: &u16) -> <u16 as Mul<u16>>::Output[src]

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

type Output = Wrapping<usize>

pub fn mul(self, other: Wrapping<usize>) -> Wrapping<usize>[src]

impl Mul<u128> for u128[src]

type Output = u128

pub fn mul(self, other: u128) -> u128[src]

impl<'_, '_> Mul<&'_ Wrapping<isize>> for &'_ Wrapping<isize>[src]

type Output = <Wrapping<isize> as Mul<Wrapping<isize>>>::Output

pub fn mul(
    self,
    other: &Wrapping<isize>
) -> <Wrapping<isize> as Mul<Wrapping<isize>>>::Output
[src]

impl<'_, '_> Mul<&'_ u16> for &'_ u16[src]

type Output = <u16 as Mul<u16>>::Output

pub fn mul(self, other: &u16) -> <u16 as Mul<u16>>::Output[src]

impl<'_, '_> Mul<&'_ u32> for &'_ u32[src]

type Output = <u32 as Mul<u32>>::Output

pub fn mul(self, other: &u32) -> <u32 as Mul<u32>>::Output[src]

impl<'_> Mul<&'_ Wrapping<u8>> for Wrapping<u8>[src]

type Output = <Wrapping<u8> as Mul<Wrapping<u8>>>::Output

pub fn mul(
    self,
    other: &Wrapping<u8>
) -> <Wrapping<u8> as Mul<Wrapping<u8>>>::Output
[src]

impl<'_, '_> Mul<&'_ Wrapping<usize>> for &'_ Wrapping<usize>[src]

type Output = <Wrapping<usize> as Mul<Wrapping<usize>>>::Output

pub fn mul(
    self,
    other: &Wrapping<usize>
) -> <Wrapping<usize> as Mul<Wrapping<usize>>>::Output
[src]

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

type Output = <Wrapping<u128> as Mul<Wrapping<u128>>>::Output

pub fn mul(
    self,
    other: Wrapping<u128>
) -> <Wrapping<u128> as Mul<Wrapping<u128>>>::Output
[src]

impl Mul<u32> for u32[src]

type Output = u32

pub fn mul(self, other: u32) -> u32[src]

impl Mul<f64> for f64[src]

type Output = f64

pub fn mul(self, other: f64) -> f64[src]

impl<'_> Mul<&'_ u64> for u64[src]

type Output = <u64 as Mul<u64>>::Output

pub fn mul(self, other: &u64) -> <u64 as Mul<u64>>::Output[src]

impl<'_> Mul<&'_ Wrapping<u64>> for Wrapping<u64>[src]

type Output = <Wrapping<u64> as Mul<Wrapping<u64>>>::Output

pub fn mul(
    self,
    other: &Wrapping<u64>
) -> <Wrapping<u64> as Mul<Wrapping<u64>>>::Output
[src]

impl<'_> Mul<&'_ u32> for u32[src]

type Output = <u32 as Mul<u32>>::Output

pub fn mul(self, other: &u32) -> <u32 as Mul<u32>>::Output[src]

impl<'_, '_> Mul<&'_ u128> for &'_ u128[src]

type Output = <u128 as Mul<u128>>::Output

pub fn mul(self, other: &u128) -> <u128 as Mul<u128>>::Output[src]

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

type Output = <f32 as Mul<f32>>::Output

pub fn mul(self, other: f32) -> <f32 as Mul<f32>>::Output[src]

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

type Output = <i32 as Mul<i32>>::Output

pub fn mul(self, other: i32) -> <i32 as Mul<i32>>::Output[src]

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

type Output = <Wrapping<i64> as Mul<Wrapping<i64>>>::Output

pub fn mul(
    self,
    other: Wrapping<i64>
) -> <Wrapping<i64> as Mul<Wrapping<i64>>>::Output
[src]

impl Mul<Duration> for u32[src]

type Output = Duration

pub fn mul(self, rhs: Duration) -> Duration[src]

impl<'_> Mul<&'_ Wrapping<isize>> for Wrapping<isize>[src]

type Output = <Wrapping<isize> as Mul<Wrapping<isize>>>::Output

pub fn mul(
    self,
    other: &Wrapping<isize>
) -> <Wrapping<isize> as Mul<Wrapping<isize>>>::Output
[src]

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

type Output = Wrapping<i32>

pub fn mul(self, other: Wrapping<i32>) -> Wrapping<i32>[src]

impl Mul<usize> for usize[src]

type Output = usize

pub fn mul(self, other: usize) -> usize[src]

impl<'_> Mul<&'_ u128> for u128[src]

type Output = <u128 as Mul<u128>>::Output

pub fn mul(self, other: &u128) -> <u128 as Mul<u128>>::Output[src]

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

type Output = Wrapping<isize>

pub fn mul(self, other: Wrapping<isize>) -> Wrapping<isize>[src]

impl<'_> Mul<&'_ f64> for f64[src]

type Output = <f64 as Mul<f64>>::Output

pub fn mul(self, other: &f64) -> <f64 as Mul<f64>>::Output[src]

impl Mul<u8> for u8[src]

type Output = u8

pub fn mul(self, other: u8) -> u8[src]

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

type Output = <Wrapping<i32> as Mul<Wrapping<i32>>>::Output

pub fn mul(
    self,
    other: Wrapping<i32>
) -> <Wrapping<i32> as Mul<Wrapping<i32>>>::Output
[src]

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

type Output = Wrapping<i8>

pub fn mul(self, other: Wrapping<i8>) -> Wrapping<i8>[src]

impl Mul<i8> for i8[src]

type Output = i8

pub fn mul(self, other: i8) -> i8[src]

impl Mul<u64> for u64[src]

type Output = u64

pub fn mul(self, other: u64) -> u64[src]

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

type Output = Wrapping<u8>

pub fn mul(self, other: Wrapping<u8>) -> Wrapping<u8>[src]

impl<'_, '_> Mul<&'_ i8> for &'_ i8[src]

type Output = <i8 as Mul<i8>>::Output

pub fn mul(self, other: &i8) -> <i8 as Mul<i8>>::Output[src]

impl<'_> Mul<&'_ isize> for isize[src]

type Output = <isize as Mul<isize>>::Output

pub fn mul(self, other: &isize) -> <isize as Mul<isize>>::Output[src]

impl<'_> Mul<&'_ i8> for i8[src]

type Output = <i8 as Mul<i8>>::Output

pub fn mul(self, other: &i8) -> <i8 as Mul<i8>>::Output[src]

impl<'_> Mul<&'_ i64> for i64[src]

type Output = <i64 as Mul<i64>>::Output

pub fn mul(self, other: &i64) -> <i64 as Mul<i64>>::Output[src]

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

type Output = Wrapping<u32>

pub fn mul(self, other: Wrapping<u32>) -> Wrapping<u32>[src]

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

type Output = <Wrapping<u64> as Mul<Wrapping<u64>>>::Output

pub fn mul(
    self,
    other: Wrapping<u64>
) -> <Wrapping<u64> as Mul<Wrapping<u64>>>::Output
[src]

impl<'_, '_> Mul<&'_ f32> for &'_ f32[src]

type Output = <f32 as Mul<f32>>::Output

pub fn mul(self, other: &f32) -> <f32 as Mul<f32>>::Output[src]

impl<'_> Mul<&'_ i128> for i128[src]

type Output = <i128 as Mul<i128>>::Output

pub fn mul(self, other: &i128) -> <i128 as Mul<i128>>::Output[src]

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

type Output = Wrapping<u16>

pub fn mul(self, other: Wrapping<u16>) -> Wrapping<u16>[src]

impl Mul<f32> for f32[src]

type Output = f32

pub fn mul(self, other: f32) -> f32[src]

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

type Output = <Wrapping<isize> as Mul<Wrapping<isize>>>::Output

pub fn mul(
    self,
    other: Wrapping<isize>
) -> <Wrapping<isize> as Mul<Wrapping<isize>>>::Output
[src]

impl<'_> Mul<&'_ Wrapping<i128>> for Wrapping<i128>[src]

type Output = <Wrapping<i128> as Mul<Wrapping<i128>>>::Output

pub fn mul(
    self,
    other: &Wrapping<i128>
) -> <Wrapping<i128> as Mul<Wrapping<i128>>>::Output
[src]

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

type Output = Wrapping<i16>

pub fn mul(self, other: Wrapping<i16>) -> Wrapping<i16>[src]

impl<'_> Mul<&'_ u8> for u8[src]

type Output = <u8 as Mul<u8>>::Output

pub fn mul(self, other: &u8) -> <u8 as Mul<u8>>::Output[src]

impl<'_, '_> Mul<&'_ i128> for &'_ i128[src]

type Output = <i128 as Mul<i128>>::Output

pub fn mul(self, other: &i128) -> <i128 as Mul<i128>>::Output[src]

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

type Output = <i128 as Mul<i128>>::Output

pub fn mul(self, other: i128) -> <i128 as Mul<i128>>::Output[src]

impl<'_, '_> Mul<&'_ Wrapping<i64>> for &'_ Wrapping<i64>[src]

type Output = <Wrapping<i64> as Mul<Wrapping<i64>>>::Output

pub fn mul(
    self,
    other: &Wrapping<i64>
) -> <Wrapping<i64> as Mul<Wrapping<i64>>>::Output
[src]

impl<'_, '_> Mul<&'_ Wrapping<u8>> for &'_ Wrapping<u8>[src]

type Output = <Wrapping<u8> as Mul<Wrapping<u8>>>::Output

pub fn mul(
    self,
    other: &Wrapping<u8>
) -> <Wrapping<u8> as Mul<Wrapping<u8>>>::Output
[src]

impl<'_, '_> Mul<&'_ i64> for &'_ i64[src]

type Output = <i64 as Mul<i64>>::Output

pub fn mul(self, other: &i64) -> <i64 as Mul<i64>>::Output[src]

impl<'_> Mul<&'_ Wrapping<i32>> for Wrapping<i32>[src]

type Output = <Wrapping<i32> as Mul<Wrapping<i32>>>::Output

pub fn mul(
    self,
    other: &Wrapping<i32>
) -> <Wrapping<i32> as Mul<Wrapping<i32>>>::Output
[src]

impl<'_> Mul<&'_ Wrapping<i16>> for Wrapping<i16>[src]

type Output = <Wrapping<i16> as Mul<Wrapping<i16>>>::Output

pub fn mul(
    self,
    other: &Wrapping<i16>
) -> <Wrapping<i16> as Mul<Wrapping<i16>>>::Output
[src]

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

type Output = <u8 as Mul<u8>>::Output

pub fn mul(self, other: u8) -> <u8 as Mul<u8>>::Output[src]

impl<'_> Mul<&'_ i32> for i32[src]

type Output = <i32 as Mul<i32>>::Output

pub fn mul(self, other: &i32) -> <i32 as Mul<i32>>::Output[src]

impl Mul<isize> for isize[src]

type Output = isize

pub fn mul(self, other: isize) -> isize[src]

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

type Output = <i64 as Mul<i64>>::Output

pub fn mul(self, other: i64) -> <i64 as Mul<i64>>::Output[src]

impl<'_> Mul<&'_ Wrapping<u128>> for Wrapping<u128>[src]

type Output = <Wrapping<u128> as Mul<Wrapping<u128>>>::Output

pub fn mul(
    self,
    other: &Wrapping<u128>
) -> <Wrapping<u128> as Mul<Wrapping<u128>>>::Output
[src]

impl<'_, '_> Mul<&'_ Wrapping<u32>> for &'_ Wrapping<u32>[src]

type Output = <Wrapping<u32> as Mul<Wrapping<u32>>>::Output

pub fn mul(
    self,
    other: &Wrapping<u32>
) -> <Wrapping<u32> as Mul<Wrapping<u32>>>::Output
[src]

impl<'_, '_> Mul<&'_ i16> for &'_ i16[src]

type Output = <i16 as Mul<i16>>::Output

pub fn mul(self, other: &i16) -> <i16 as Mul<i16>>::Output[src]

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

type Output = <f64 as Mul<f64>>::Output

pub fn mul(self, other: f64) -> <f64 as Mul<f64>>::Output[src]

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

type Output = <i8 as Mul<i8>>::Output

pub fn mul(self, other: i8) -> <i8 as Mul<i8>>::Output[src]

impl<'_, '_> Mul<&'_ Wrapping<u128>> for &'_ Wrapping<u128>[src]

type Output = <Wrapping<u128> as Mul<Wrapping<u128>>>::Output

pub fn mul(
    self,
    other: &Wrapping<u128>
) -> <Wrapping<u128> as Mul<Wrapping<u128>>>::Output
[src]

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

type Output = <u64 as Mul<u64>>::Output

pub fn mul(self, other: u64) -> <u64 as Mul<u64>>::Output[src]

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

type Output = Wrapping<i64>

pub fn mul(self, other: Wrapping<i64>) -> Wrapping<i64>[src]

impl Mul<i64> for i64[src]

type Output = i64

pub fn mul(self, other: i64) -> i64[src]

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

type Output = <u32 as Mul<u32>>::Output

pub fn mul(self, other: u32) -> <u32 as Mul<u32>>::Output[src]

impl<'_> Mul<&'_ Wrapping<u32>> for Wrapping<u32>[src]

type Output = <Wrapping<u32> as Mul<Wrapping<u32>>>::Output

pub fn mul(
    self,
    other: &Wrapping<u32>
) -> <Wrapping<u32> as Mul<Wrapping<u32>>>::Output
[src]

impl Mul<u16> for u16[src]

type Output = u16

pub fn mul(self, other: u16) -> u16[src]

impl<'_> Mul<&'_ Wrapping<i8>> for Wrapping<i8>[src]

type Output = <Wrapping<i8> as Mul<Wrapping<i8>>>::Output

pub fn mul(
    self,
    other: &Wrapping<i8>
) -> <Wrapping<i8> as Mul<Wrapping<i8>>>::Output
[src]

impl<'_> Mul<&'_ Wrapping<usize>> for Wrapping<usize>[src]

type Output = <Wrapping<usize> as Mul<Wrapping<usize>>>::Output

pub fn mul(
    self,
    other: &Wrapping<usize>
) -> <Wrapping<usize> as Mul<Wrapping<usize>>>::Output
[src]

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

type Output = <Wrapping<i16> as Mul<Wrapping<i16>>>::Output

pub fn mul(
    self,
    other: Wrapping<i16>
) -> <Wrapping<i16> as Mul<Wrapping<i16>>>::Output
[src]

impl<'_, '_> Mul<&'_ i32> for &'_ i32[src]

type Output = <i32 as Mul<i32>>::Output

pub fn mul(self, other: &i32) -> <i32 as Mul<i32>>::Output[src]

impl<'_, '_> Mul<&'_ isize> for &'_ isize[src]

type Output = <isize as Mul<isize>>::Output

pub fn mul(self, other: &isize) -> <isize as Mul<isize>>::Output[src]

impl Mul<i32> for i32[src]

type Output = i32

pub fn mul(self, other: i32) -> i32[src]

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

type Output = <Wrapping<usize> as Mul<Wrapping<usize>>>::Output

pub fn mul(
    self,
    other: Wrapping<usize>
) -> <Wrapping<usize> as Mul<Wrapping<usize>>>::Output
[src]

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

type Output = <usize as Mul<usize>>::Output

pub fn mul(self, other: usize) -> <usize as Mul<usize>>::Output[src]

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

type Output = Wrapping<i128>

pub fn mul(self, other: Wrapping<i128>) -> Wrapping<i128>[src]

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

type Output = <Wrapping<u16> as Mul<Wrapping<u16>>>::Output

pub fn mul(
    self,
    other: Wrapping<u16>
) -> <Wrapping<u16> as Mul<Wrapping<u16>>>::Output
[src]

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

type Output = <Wrapping<i8> as Mul<Wrapping<i8>>>::Output

pub fn mul(
    self,
    other: Wrapping<i8>
) -> <Wrapping<i8> as Mul<Wrapping<i8>>>::Output
[src]

impl<'_, '_> Mul<&'_ usize> for &'_ usize[src]

type Output = <usize as Mul<usize>>::Output

pub fn mul(self, other: &usize) -> <usize as Mul<usize>>::Output[src]

impl<'_> Mul<&'_ Wrapping<i64>> for Wrapping<i64>[src]

type Output = <Wrapping<i64> as Mul<Wrapping<i64>>>::Output

pub fn mul(
    self,
    other: &Wrapping<i64>
) -> <Wrapping<i64> as Mul<Wrapping<i64>>>::Output
[src]

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

type Output = <Wrapping<u32> as Mul<Wrapping<u32>>>::Output

pub fn mul(
    self,
    other: Wrapping<u32>
) -> <Wrapping<u32> as Mul<Wrapping<u32>>>::Output
[src]

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

type Output = BigInt

pub fn mul(self, other: &i128) -> BigInt[src]

impl Mul<i128> for BigInt[src]

type Output = BigInt

pub fn mul(self, other: i128) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &u16) -> BigInt[src]

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

type Output = BigUint

pub fn mul(self, other: usize) -> BigUint[src]

impl Mul<u8> for BigInt[src]

type Output = BigInt

pub fn mul(self, other: u8) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &BigInt) -> BigInt[src]

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

type Output = BigUint

pub fn mul(self, other: BigUint) -> BigUint[src]

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

type Output = BigInt

pub fn mul(self, other: &BigInt) -> BigInt[src]

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

type Output = BigUint

pub fn mul(self, other: &BigUint) -> BigUint[src]

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

type Output = BigInt

pub fn mul(self, other: &u128) -> BigInt[src]

impl Mul<BigInt> for i8[src]

type Output = BigInt

pub fn mul(self, other: BigInt) -> BigInt[src]

impl Mul<BigInt> for u128[src]

type Output = BigInt

pub fn mul(self, other: BigInt) -> BigInt[src]

impl Mul<BigInt> for u8[src]

type Output = BigInt

pub fn mul(self, other: BigInt) -> BigInt[src]

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

type Output = BigUint

pub fn mul(self, other: &BigUint) -> BigUint[src]

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

type Output = BigUint

pub fn mul(self, other: BigUint) -> BigUint[src]

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

type Output = BigInt

pub fn mul(self, other: u128) -> BigInt[src]

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

type Output = BigUint

pub fn mul(self, other: BigUint) -> BigUint[src]

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

type Output = BigInt

pub fn mul(self, other: &BigInt) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &u64) -> BigInt[src]

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

type Output = BigUint

pub fn mul(self, other: &usize) -> BigUint[src]

impl<'a> Mul<BigInt> for &'a BigInt[src]

type Output = BigInt

pub fn mul(self, other: BigInt) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &u32) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &usize) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &BigInt) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &i32) -> BigInt[src]

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

type Output = BigUint

pub fn mul(self, other: BigUint) -> BigUint[src]

impl Mul<i64> for BigInt[src]

type Output = BigInt

pub fn mul(self, other: i64) -> BigInt[src]

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

type Output = BigUint

pub fn mul(self, other: &u64) -> BigUint[src]

impl Mul<BigUint> for u64[src]

type Output = BigUint

pub fn mul(self, other: BigUint) -> BigUint[src]

impl Mul<BigInt> for usize[src]

type Output = BigInt

pub fn mul(self, other: BigInt) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: BigInt) -> BigInt[src]

impl Mul<usize> for BigUint[src]

type Output = BigUint

pub fn mul(self, other: usize) -> BigUint[src]

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

type Output = BigInt

pub fn mul(self, other: u32) -> BigInt[src]

impl Mul<u64> for BigUint[src]

type Output = BigUint

pub fn mul(self, other: u64) -> BigUint[src]

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

type Output = BigInt

pub fn mul(self, other: BigInt) -> BigInt[src]

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

type Output = BigUint

pub fn mul(self, other: &BigUint) -> BigUint[src]

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

type Output = BigUint

pub fn mul(self, other: &u16) -> BigUint[src]

impl Mul<u32> for BigInt[src]

type Output = BigInt

pub fn mul(self, other: u32) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: u16) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: i128) -> BigInt[src]

impl Mul<u64> for BigInt[src]

type Output = BigInt

pub fn mul(self, other: u64) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &BigInt) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &BigInt) -> BigInt[src]

impl Mul<BigInt> for i64[src]

type Output = BigInt

pub fn mul(self, other: BigInt) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &BigInt) -> BigInt[src]

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

type Output = BigUint

pub fn mul(self, other: &BigUint) -> BigUint[src]

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

type Output = BigInt

pub fn mul(self, other: BigInt) -> BigInt[src]

impl Mul<BigInt> for u64[src]

type Output = BigInt

pub fn mul(self, other: BigInt) -> BigInt[src]

impl Mul<BigInt> for i16[src]

type Output = BigInt

pub fn mul(self, other: BigInt) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &BigInt) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &BigInt) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &BigInt) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &u16) -> BigInt[src]

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

type Output = BigUint

pub fn mul(self, other: BigUint) -> BigUint[src]

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

type Output = BigInt

pub fn mul(self, other: &i16) -> BigInt[src]

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

type Output = BigUint

pub fn mul(self, other: &u128) -> BigUint[src]

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

type Output = BigInt

pub fn mul(self, other: &i128) -> BigInt[src]

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

type Output = BigUint

pub fn mul(self, other: &BigUint) -> BigUint[src]

impl Mul<i16> for BigInt[src]

type Output = BigInt

pub fn mul(self, other: i16) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &u8) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: u8) -> BigInt[src]

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

type Output = BigUint

pub fn mul(self, other: &BigUint) -> BigUint[src]

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

type Output = BigInt

pub fn mul(self, other: BigInt) -> BigInt[src]

impl Mul<i32> for BigInt[src]

type Output = BigInt

pub fn mul(self, other: i32) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &u8) -> BigInt[src]

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

type Output = BigUint

pub fn mul(self, other: BigUint) -> BigUint[src]

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

type Output = BigInt

pub fn mul(self, other: BigInt) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &i32) -> BigInt[src]

impl Mul<u128> for BigInt[src]

type Output = BigInt

pub fn mul(self, other: u128) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &BigInt) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &isize) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &BigInt) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: i16) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: BigInt) -> BigInt[src]

impl Mul<BigUint> for u128[src]

type Output = BigUint

pub fn mul(self, other: BigUint) -> BigUint[src]

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

type Output = BigInt

pub fn mul(self, other: &BigInt) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &BigInt) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &isize) -> BigInt[src]

impl Mul<BigInt> for isize[src]

type Output = BigInt

pub fn mul(self, other: BigInt) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &BigInt) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: BigInt) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &BigInt) -> BigInt[src]

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

type Output = BigUint

pub fn mul(self, other: &u32) -> BigUint[src]

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

type Output = BigUint

pub fn mul(self, other: u32) -> BigUint[src]

impl<'a> Mul<&'a BigUint> for BigUint[src]

type Output = BigUint

pub fn mul(self, other: &BigUint) -> BigUint[src]

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

type Output = BigInt

pub fn mul(self, other: &u128) -> BigInt[src]

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

type Output = BigUint

pub fn mul(self, other: &BigUint) -> BigUint[src]

impl Mul<BigInt> for i128[src]

type Output = BigInt

pub fn mul(self, other: BigInt) -> BigInt[src]

impl Mul<BigUint> for BigUint[src]

type Output = BigUint

pub fn mul(self, other: BigUint) -> BigUint[src]

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

type Output = BigInt

pub fn mul(self, other: usize) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &i8) -> BigInt[src]

impl Mul<u8> for BigUint[src]

type Output = BigUint

pub fn mul(self, other: u8) -> BigUint[src]

impl Mul<u128> for BigUint[src]

type Output = BigUint

pub fn mul(self, other: u128) -> BigUint[src]

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

type Output = BigUint

pub fn mul(self, other: &BigUint) -> BigUint[src]

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

type Output = BigUint

pub fn mul(self, other: &u32) -> BigUint[src]

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

type Output = BigUint

pub fn mul(self, other: &usize) -> BigUint[src]

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

type Output = BigInt

pub fn mul(self, other: &BigInt) -> BigInt[src]

impl Mul<i8> for BigInt[src]

type Output = BigInt

pub fn mul(self, other: i8) -> BigInt[src]

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

type Output = BigUint

pub fn mul(self, other: &u8) -> BigUint[src]

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

type Output = BigInt

pub fn mul(self, other: &BigInt) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &i8) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &BigInt) -> BigInt[src]

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

type Output = BigUint

pub fn mul(self, other: &u64) -> BigUint[src]

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

type Output = BigInt

pub fn mul(self, other: &i64) -> BigInt[src]

impl Mul<BigUint> for u32[src]

type Output = BigUint

pub fn mul(self, other: BigUint) -> BigUint[src]

impl Mul<BigInt> for i32[src]

type Output = BigInt

pub fn mul(self, other: BigInt) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &BigInt) -> BigInt[src]

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

type Output = BigUint

pub fn mul(self, other: u64) -> BigUint[src]

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

type Output = BigInt

pub fn mul(self, other: &u64) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: BigInt) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &BigInt) -> BigInt[src]

impl Mul<usize> for BigInt[src]

type Output = BigInt

pub fn mul(self, other: usize) -> BigInt[src]

impl Mul<BigInt> for u32[src]

type Output = BigInt

pub fn mul(self, other: BigInt) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: i64) -> BigInt[src]

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

type Output = BigUint

pub fn mul(self, other: u128) -> BigUint[src]

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

type Output = BigUint

pub fn mul(self, other: u16) -> BigUint[src]

impl Mul<BigUint> for u8[src]

type Output = BigUint

pub fn mul(self, other: BigUint) -> BigUint[src]

impl<'a> Mul<&'a BigInt> for BigInt[src]

type Output = BigInt

pub fn mul(self, other: &BigInt) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &i16) -> BigInt[src]

impl Mul<BigUint> for u16[src]

type Output = BigUint

pub fn mul(self, other: BigUint) -> BigUint[src]

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

type Output = BigUint

pub fn mul(self, other: &BigUint) -> BigUint[src]

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

type Output = BigUint

pub fn mul(self, other: &BigUint) -> BigUint[src]

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

type Output = BigInt

pub fn mul(self, other: BigInt) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &BigInt) -> BigInt[src]

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

type Output = BigUint

pub fn mul(self, other: &BigUint) -> BigUint[src]

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

type Output = BigInt

pub fn mul(self, other: BigInt) -> BigInt[src]

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

type Output = BigUint

pub fn mul(self, other: &u128) -> BigUint[src]

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

type Output = BigInt

pub fn mul(self, other: BigInt) -> BigInt[src]

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

type Output = BigUint

pub fn mul(self, other: u8) -> BigUint[src]

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

type Output = BigInt

pub fn mul(self, other: &BigInt) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: i32) -> BigInt[src]

impl<'a> Mul<BigUint> for &'a BigUint[src]

type Output = BigUint

pub fn mul(self, other: BigUint) -> BigUint[src]

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

type Output = BigUint

pub fn mul(self, other: &u8) -> BigUint[src]

impl Mul<Sign> for Sign[src]

type Output = Sign

pub fn mul(self, other: Sign) -> Sign[src]

impl Mul<u32> for BigUint[src]

type Output = BigUint

pub fn mul(self, other: u32) -> BigUint[src]

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

type Output = BigUint

pub fn mul(self, other: &u16) -> BigUint[src]

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

type Output = BigUint

pub fn mul(self, other: &BigUint) -> BigUint[src]

impl Mul<u16> for BigInt[src]

type Output = BigInt

pub fn mul(self, other: u16) -> BigInt[src]

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

type Output = BigUint

pub fn mul(self, other: &BigUint) -> BigUint[src]

impl Mul<BigInt> for BigInt[src]

type Output = BigInt

pub fn mul(self, other: BigInt) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &u32) -> BigInt[src]

impl Mul<BigUint> for usize[src]

type Output = BigUint

pub fn mul(self, other: BigUint) -> BigUint[src]

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

type Output = BigInt

pub fn mul(self, other: isize) -> BigInt[src]

impl Mul<isize> for BigInt[src]

type Output = BigInt

pub fn mul(self, other: isize) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &BigInt) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: u64) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: BigInt) -> BigInt[src]

impl Mul<BigInt> for u16[src]

type Output = BigInt

pub fn mul(self, other: BigInt) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &i64) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: i8) -> BigInt[src]

impl Mul<u16> for BigUint[src]

type Output = BigUint

pub fn mul(self, other: u16) -> BigUint[src]

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

type Output = BigInt

pub fn mul(self, other: &usize) -> BigInt[src]

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

type Output = BigInt

pub fn mul(self, other: &BigInt) -> BigInt[src]

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

type Output = Complex<f64>

pub fn mul(self, other: &Complex<f64>) -> Complex<f64>[src]

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

type Output = Complex<i32>

pub fn mul(self, other: Complex<i32>) -> <i32 as Mul<Complex<i32>>>::Output[src]

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

type Output = Complex<i32>

pub fn mul(self, other: Complex<i32>) -> Complex<i32>[src]

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

type Output = Complex<u32>

pub fn mul(self, other: &Complex<u32>) -> Complex<u32>[src]

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

type Output = Complex<i16>

pub fn mul(self, other: Complex<i16>) -> <i16 as Mul<Complex<i16>>>::Output[src]

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

type Output = Complex<i64>

pub fn mul(self, other: &Complex<i64>) -> Complex<i64>[src]

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

type Output = Complex<i32>

pub fn mul(self, other: &Complex<i32>) -> Complex<i32>[src]

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

type Output = Complex<isize>

pub fn mul(self, other: &Complex<isize>) -> Complex<isize>[src]

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

type Output = Complex<i16>

pub fn mul(self, other: &Complex<i16>) -> Complex<i16>[src]

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

type Output = Complex<isize>

pub fn mul(
    self,
    other: Complex<isize>
) -> <isize as Mul<Complex<isize>>>::Output
[src]

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

type Output = Complex<u128>

pub fn mul(self, other: &Complex<u128>) -> Complex<u128>[src]

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

type Output = Complex<i8>

pub fn mul(self, other: Complex<i8>) -> Complex<i8>[src]

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

type Output = Complex<u32>

pub fn mul(self, other: &Complex<u32>) -> Complex<u32>[src]

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

type Output = Complex<u16>

pub fn mul(self, other: &Complex<u16>) -> Complex<u16>[src]

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

type Output = Complex<u64>

pub fn mul(self, other: &Complex<u64>) -> Complex<u64>[src]

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

type Output = Complex<u128>

pub fn mul(self, other: Complex<u128>) -> Complex<u128>[src]

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

type Output = Complex<T>

pub fn mul(self, other: &T) -> <Complex<T> as Mul<&'a T>>::Output[src]

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

type Output = Complex<isize>

pub fn mul(self, other: &Complex<isize>) -> Complex<isize>[src]

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

type Output = Complex<u64>

pub fn mul(self, other: &Complex<u64>) -> Complex<u64>[src]

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

type Output = Complex<i32>

pub fn mul(self, other: &Complex<i32>) -> Complex<i32>[src]

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

type Output = Complex<u128>

pub fn mul(self, other: Complex<u128>) -> <u128 as Mul<Complex<u128>>>::Output[src]

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

type Output = Complex<usize>

pub fn mul(self, other: Complex<usize>) -> Complex<usize>[src]

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

type Output = Complex<f32>

pub fn mul(self, other: &Complex<f32>) -> Complex<f32>[src]

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

type Output = Complex<T>

pub fn mul(self, other: &T) -> <&'b Complex<T> as Mul<&'a T>>::Output[src]

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

type Output = Complex<i128>

pub fn mul(self, other: Complex<i128>) -> <i128 as Mul<Complex<i128>>>::Output[src]

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

type Output = Complex<f64>

pub fn mul(self, other: Complex<f64>) -> <f64 as Mul<Complex<f64>>>::Output[src]

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

type Output = Complex<T>

pub fn mul(self, other: T) -> <&'a Complex<T> as Mul<T>>::Output[src]

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

type Output = Complex<u16>

pub fn mul(self, other: Complex<u16>) -> Complex<u16>[src]

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

type Output = Complex<u32>

pub fn mul(self, other: Complex<u32>) -> <u32 as Mul<Complex<u32>>>::Output[src]

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

type Output = Complex<i8>

pub fn mul(self, other: &Complex<i8>) -> Complex<i8>[src]

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

type Output = Complex<i8>

pub fn mul(self, other: &Complex<i8>) -> Complex<i8>[src]

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

type Output = Complex<f32>

pub fn mul(self, other: &Complex<f32>) -> Complex<f32>[src]

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

type Output = Complex<i128>

pub fn mul(self, other: &Complex<i128>) -> Complex<i128>[src]

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

type Output = Complex<usize>

pub fn mul(
    self,
    other: Complex<usize>
) -> <usize as Mul<Complex<usize>>>::Output
[src]

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

type Output = Complex<f64>

pub fn mul(self, other: Complex<f64>) -> Complex<f64>[src]

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

type Output = Complex<T>

pub fn mul(self, other: T) -> <Complex<T> as Mul<T>>::Output[src]

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

type Output = Complex<usize>

pub fn mul(self, other: &Complex<usize>) -> Complex<usize>[src]

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

type Output = Complex<u32>

pub fn mul(self, other: Complex<u32>) -> Complex<u32>[src]

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

type Output = Complex<i16>

pub fn mul(self, other: Complex<i16>) -> Complex<i16>[src]

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

type Output = Complex<i64>

pub fn mul(self, other: &Complex<i64>) -> Complex<i64>[src]

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

type Output = Complex<u8>

pub fn mul(self, other: &Complex<u8>) -> Complex<u8>[src]

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

type Output = Complex<u128>

pub fn mul(self, other: &Complex<u128>) -> Complex<u128>[src]

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

type Output = Complex<T>

pub fn mul(
    self,
    other: &Complex<T>
) -> <&'a Complex<T> as Mul<&'b Complex<T>>>::Output
[src]

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

type Output = Complex<u64>

pub fn mul(self, other: Complex<u64>) -> <u64 as Mul<Complex<u64>>>::Output[src]

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

type Output = Complex<i128>

pub fn mul(self, other: &Complex<i128>) -> Complex<i128>[src]

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

type Output = Complex<T>

pub fn mul(
    self,
    other: Complex<T>
) -> <&'a Complex<T> as Mul<Complex<T>>>::Output
[src]

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

type Output = Complex<f64>

pub fn mul(self, other: &Complex<f64>) -> Complex<f64>[src]

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

type Output = Complex<isize>

pub fn mul(self, other: Complex<isize>) -> Complex<isize>[src]

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

type Output = Complex<i64>

pub fn mul(self, other: Complex<i64>) -> <i64 as Mul<Complex<i64>>>::Output[src]

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

type Output = Complex<u8>

pub fn mul(self, other: Complex<u8>) -> Complex<u8>[src]

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

type Output = Complex<i16>

pub fn mul(self, other: &Complex<i16>) -> Complex<i16>[src]

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

type Output = Complex<u8>

pub fn mul(self, other: &Complex<u8>) -> Complex<u8>[src]

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

type Output = Complex<usize>

pub fn mul(self, other: &Complex<usize>) -> Complex<usize>[src]

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

type Output = Complex<f32>

pub fn mul(self, other: Complex<f32>) -> Complex<f32>[src]

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

type Output = Complex<i64>

pub fn mul(self, other: Complex<i64>) -> Complex<i64>[src]

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

type Output = Complex<u64>

pub fn mul(self, other: Complex<u64>) -> Complex<u64>[src]

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

type Output = Complex<i128>

pub fn mul(self, other: Complex<i128>) -> Complex<i128>[src]

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

type Output = Complex<f32>

pub fn mul(self, other: Complex<f32>) -> <f32 as Mul<Complex<f32>>>::Output[src]

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

type Output = Complex<T>

pub fn mul(self, other: Complex<T>) -> <Complex<T> as Mul<Complex<T>>>::Output[src]

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

type Output = Complex<u16>

pub fn mul(self, other: Complex<u16>) -> <u16 as Mul<Complex<u16>>>::Output[src]

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

type Output = Complex<u8>

pub fn mul(self, other: Complex<u8>) -> <u8 as Mul<Complex<u8>>>::Output[src]

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

type Output = Complex<T>

pub fn mul(
    self,
    other: &Complex<T>
) -> <Complex<T> as Mul<&'a Complex<T>>>::Output
[src]

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

type Output = Complex<u16>

pub fn mul(self, other: &Complex<u16>) -> Complex<u16>[src]

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

type Output = Complex<i8>

pub fn mul(self, other: Complex<i8>) -> <i8 as Mul<Complex<i8>>>::Output[src]

impl<T> Mul<Ratio<T>> for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

pub fn mul(self, rhs: Ratio<T>) -> Ratio<T>[src]

impl<T> Mul<T> for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

pub fn mul(self, rhs: T) -> Ratio<T>[src]

impl<'a, T> Mul<&'a Ratio<T>> for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

pub fn mul(self, other: &Ratio<T>) -> Ratio<T>[src]

impl<'a, T> Mul<T> for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

pub fn mul(self, other: T) -> Ratio<T>[src]

impl<'a, 'b, T> Mul<&'b Ratio<T>> for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

pub fn mul(self, other: &'b Ratio<T>) -> Ratio<T>[src]

impl<'a, 'b, T> Mul<&'b T> for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

pub fn mul(self, other: &'b T) -> Ratio<T>[src]

impl<'a, T> Mul<&'a T> for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

pub fn mul(self, other: &T) -> Ratio<T>[src]

impl<'a, T> Mul<Ratio<T>> for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

pub fn mul(self, other: Ratio<T>) -> Ratio<T>[src]

impl<'a, 'b, T, R, const D: usize> Mul<&'b Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>> for &'a Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>

pub fn mul(
    self,
    right: &'b Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>
) -> <&'a Isometry<T, R, D> as Mul<&'b Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>>::Output
[src]

impl<'a, T> Mul<Similarity<T, Unit<Quaternion<T>>, 3_usize>> for &'a Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, Unit<Quaternion<T>>, 3_usize>

pub fn mul(
    self,
    right: Similarity<T, Unit<Quaternion<T>>, 3_usize>
) -> <&'a Unit<Quaternion<T>> as Mul<Similarity<T, Unit<Quaternion<T>>, 3_usize>>>::Output
[src]

impl<'a, T, SB> Mul<Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>> for &'a Unit<DualQuaternion<T>> where
    T: SimdRealField,
    SB: Storage<T, Const<{_: usize}>, Const<1_usize>>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, ArrayStorage<T, 3_usize, 1_usize>>>

pub fn mul(
    self,
    rhs: Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>
) -> <&'a Unit<DualQuaternion<T>> as Mul<Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>>>::Output
[src]

impl<T, R, const D: usize> Mul<Similarity<T, R, D>> for Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, R, D>

pub fn mul(
    self,
    rhs: Similarity<T, R, D>
) -> <Isometry<T, R, D> as Mul<Similarity<T, R, D>>>::Output
[src]

impl<'a, T> Mul<Unit<Quaternion<T>>> for &'a Similarity<T, Unit<Quaternion<T>>, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, Unit<Quaternion<T>>, 3_usize>

pub fn mul(
    self,
    rhs: Unit<Quaternion<T>>
) -> <&'a Similarity<T, Unit<Quaternion<T>>, 3_usize> as Mul<Unit<Quaternion<T>>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Unit<Quaternion<T>>> for &'a Similarity<T, Unit<Quaternion<T>>, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, Unit<Quaternion<T>>, 3_usize>

pub fn mul(
    self,
    rhs: &'b Unit<Quaternion<T>>
) -> <&'a Similarity<T, Unit<Quaternion<T>>, 3_usize> as Mul<&'b Unit<Quaternion<T>>>>::Output
[src]

impl<'b, T> Mul<&'b Unit<Quaternion<T>>> for Similarity<T, Unit<Quaternion<T>>, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, Unit<Quaternion<T>>, 3_usize>

pub fn mul(
    self,
    rhs: &'b Unit<Quaternion<T>>
) -> <Similarity<T, Unit<Quaternion<T>>, 3_usize> as Mul<&'b Unit<Quaternion<T>>>>::Output
[src]

impl<'b, T> Mul<&'b Unit<Complex<T>>> for Translation<T, 2_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Complex<T>>, 2_usize>

pub fn mul(
    self,
    right: &'b Unit<Complex<T>>
) -> <Translation<T, 2_usize> as Mul<&'b Unit<Complex<T>>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Unit<DualQuaternion<T>>> for &'a Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<DualQuaternion<T>>

pub fn mul(
    self,
    rhs: &'b Unit<DualQuaternion<T>>
) -> <&'a Unit<DualQuaternion<T>> as Mul<&'b Unit<DualQuaternion<T>>>>::Output
[src]

impl<'b, T> Mul<&'b Translation<T, 3_usize>> for Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<DualQuaternion<T>>

pub fn mul(
    self,
    rhs: &'b Translation<T, 3_usize>
) -> <Unit<DualQuaternion<T>> as Mul<&'b Translation<T, 3_usize>>>::Output
[src]

impl<T, const D: usize> Mul<Isometry<T, Rotation<T, D>, D>> for Rotation<T, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Rotation<T, D>, D>

pub fn mul(
    self,
    right: Isometry<T, Rotation<T, D>, D>
) -> <Rotation<T, D> as Mul<Isometry<T, Rotation<T, D>, D>>>::Output
[src]

impl<T, C, const D: usize> Mul<Transform<T, C, D>> for Rotation<T, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: Transform<T, C, D>
) -> <Rotation<T, D> as Mul<Transform<T, C, D>>>::Output
[src]

impl<'a, 'b, T, C, R, const D: usize> Mul<&'b Similarity<T, R, D>> for &'a Transform<T, C, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    R: SubsetOf<Matrix<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <DefaultAllocator as Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>>::Buffer>>,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: &'b Similarity<T, R, D>
) -> <&'a Transform<T, C, D> as Mul<&'b Similarity<T, R, D>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Unit<Complex<T>>> for &'a Similarity<T, Unit<Complex<T>>, 2_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, Unit<Complex<T>>, 2_usize>

pub fn mul(
    self,
    rhs: &'b Unit<Complex<T>>
) -> <&'a Similarity<T, Unit<Complex<T>>, 2_usize> as Mul<&'b Unit<Complex<T>>>>::Output
[src]

impl<R, C, S> Mul<Matrix<i8, R, C, S>> for i8 where
    C: Dim,
    R: Dim,
    S: Storage<i8, R, C>,
    DefaultAllocator: Allocator<i8, R, C>, 
[src]

type Output = Matrix<i8, R, C, <DefaultAllocator as Allocator<i8, R, C>>::Buffer>

pub fn mul(
    self,
    rhs: Matrix<i8, R, C, S>
) -> <i8 as Mul<Matrix<i8, R, C, S>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Isometry<T, Unit<Complex<T>>, 2_usize>> for &'a Unit<Complex<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Complex<T>>, 2_usize>

pub fn mul(
    self,
    rhs: &'b Isometry<T, Unit<Complex<T>>, 2_usize>
) -> <&'a Unit<Complex<T>> as Mul<&'b Isometry<T, Unit<Complex<T>>, 2_usize>>>::Output
[src]

impl<'a, 'b, T, C> Mul<&'b Transform<T, C, 3_usize>> for &'a Unit<Quaternion<T>> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, 3_usize>

pub fn mul(
    self,
    rhs: &'b Transform<T, C, 3_usize>
) -> <&'a Unit<Quaternion<T>> as Mul<&'b Transform<T, C, 3_usize>>>::Output
[src]

impl<'b, T, R, const D: usize> Mul<&'b Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>> for Similarity<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>

pub fn mul(
    self,
    right: &'b Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>
) -> <Similarity<T, R, D> as Mul<&'b Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>>::Output
[src]

impl<T, R, const D: usize> Mul<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>> for Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>

pub fn mul(
    self,
    right: Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>
) -> <Isometry<T, R, D> as Mul<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Rotation<T, 2_usize>> for &'a Unit<Complex<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Complex<T>>

pub fn mul(
    self,
    rhs: &'b Rotation<T, 2_usize>
) -> <&'a Unit<Complex<T>> as Mul<&'b Rotation<T, 2_usize>>>::Output
[src]

impl<'a, 'b, T, C, R, const D: usize> Mul<&'b Isometry<T, R, D>> for &'a Transform<T, C, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    R: SubsetOf<Matrix<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <DefaultAllocator as Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>>::Buffer>>,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: &'b Isometry<T, R, D>
) -> <&'a Transform<T, C, D> as Mul<&'b Isometry<T, R, D>>>::Output
[src]

impl<'a, T, R, const D: usize> Mul<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>> for &'a Similarity<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>

pub fn mul(
    self,
    right: Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>
) -> <&'a Similarity<T, R, D> as Mul<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>>::Output
[src]

impl<'b, const D: usize> Mul<&'b Point<isize, D>> for isize[src]

type Output = Point<isize, D>

pub fn mul(
    self,
    right: &'b Point<isize, D>
) -> <isize as Mul<&'b Point<isize, D>>>::Output
[src]

impl<'a, T, R, C, S> Mul<T> for &'a Matrix<T, R, C, S> where
    C: Dim,
    T: Scalar + ClosedMul<T>,
    R: Dim,
    S: Storage<T, R, C>,
    DefaultAllocator: Allocator<T, R, C>, 
[src]

type Output = Matrix<T, R, C, <DefaultAllocator as Allocator<T, R, C>>::Buffer>

pub fn mul(self, rhs: T) -> <&'a Matrix<T, R, C, S> as Mul<T>>::Output[src]

impl<R, C, S> Mul<Matrix<f64, R, C, S>> for f64 where
    C: Dim,
    R: Dim,
    S: Storage<f64, R, C>,
    DefaultAllocator: Allocator<f64, R, C>, 
[src]

type Output = Matrix<f64, R, C, <DefaultAllocator as Allocator<f64, R, C>>::Buffer>

pub fn mul(
    self,
    rhs: Matrix<f64, R, C, S>
) -> <f64 as Mul<Matrix<f64, R, C, S>>>::Output
[src]

impl<'b, T> Mul<&'b Translation<T, 2_usize>> for Unit<Complex<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Complex<T>>, 2_usize>

pub fn mul(
    self,
    rhs: &'b Translation<T, 2_usize>
) -> <Unit<Complex<T>> as Mul<&'b Translation<T, 2_usize>>>::Output
[src]

impl<'a, T> Mul<DualQuaternion<T>> for &'a DualQuaternion<T> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = DualQuaternion<T>

pub fn mul(
    self,
    rhs: DualQuaternion<T>
) -> <&'a DualQuaternion<T> as Mul<DualQuaternion<T>>>::Output
[src]

impl<T, S> Mul<Unit<Matrix<T, Const<2_usize>, Const<1_usize>, S>>> for Unit<Complex<T>> where
    T: SimdRealField,
    S: Storage<T, Const<2_usize>, Const<1_usize>>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, ArrayStorage<T, 2_usize, 1_usize>>>

pub fn mul(
    self,
    rhs: Unit<Matrix<T, Const<2_usize>, Const<1_usize>, S>>
) -> <Unit<Complex<T>> as Mul<Unit<Matrix<T, Const<2_usize>, Const<1_usize>, S>>>>::Output
[src]

impl<'a, T, R, const D: usize> Mul<Isometry<T, R, D>> for &'a Translation<T, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, R, D>

pub fn mul(
    self,
    right: Isometry<T, R, D>
) -> <&'a Translation<T, D> as Mul<Isometry<T, R, D>>>::Output
[src]

impl<'a, 'b, T, const D: usize> Mul<&'b Point<T, D>> for &'a Translation<T, D> where
    T: ClosedAdd<T> + Scalar,
    ShapeConstraint: SameNumberOfRows<Const<D>, Const<D>>,
    ShapeConstraint: SameNumberOfColumns<Const<1_usize>, Const<1_usize>>,
    <ShapeConstraint as SameNumberOfRows<Const<D>, Const<D>>>::Representative == Const<D>,
    <ShapeConstraint as SameNumberOfColumns<Const<1_usize>, Const<1_usize>>>::Representative == Const<1_usize>, 
[src]

type Output = Point<T, D>

pub fn mul(
    self,
    right: &'b Point<T, D>
) -> <&'a Translation<T, D> as Mul<&'b Point<T, D>>>::Output
[src]

impl<R, C, S> Mul<Matrix<i32, R, C, S>> for i32 where
    C: Dim,
    R: Dim,
    S: Storage<i32, R, C>,
    DefaultAllocator: Allocator<i32, R, C>, 
[src]

type Output = Matrix<i32, R, C, <DefaultAllocator as Allocator<i32, R, C>>::Buffer>

pub fn mul(
    self,
    rhs: Matrix<i32, R, C, S>
) -> <i32 as Mul<Matrix<i32, R, C, S>>>::Output
[src]

impl<'b, T, R, const D: usize> Mul<&'b Unit<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>> for Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>

pub fn mul(
    self,
    right: &'b Unit<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>
) -> <Isometry<T, R, D> as Mul<&'b Unit<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>>>::Output
[src]

impl<T, const D: usize> Mul<Translation<T, D>> for Rotation<T, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Rotation<T, D>, D>

pub fn mul(
    self,
    right: Translation<T, D>
) -> <Rotation<T, D> as Mul<Translation<T, D>>>::Output
[src]

impl<'a, T, C, R, const D: usize> Mul<Similarity<T, R, D>> for &'a Transform<T, C, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    R: SubsetOf<Matrix<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <DefaultAllocator as Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>>::Buffer>>,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: Similarity<T, R, D>
) -> <&'a Transform<T, C, D> as Mul<Similarity<T, R, D>>>::Output
[src]

impl<T> Mul<Unit<Complex<T>>> for Isometry<T, Unit<Complex<T>>, 2_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Complex<T>>, 2_usize>

pub fn mul(
    self,
    rhs: Unit<Complex<T>>
) -> <Isometry<T, Unit<Complex<T>>, 2_usize> as Mul<Unit<Complex<T>>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Unit<Complex<T>>> for &'a Translation<T, 2_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Complex<T>>, 2_usize>

pub fn mul(
    self,
    right: &'b Unit<Complex<T>>
) -> <&'a Translation<T, 2_usize> as Mul<&'b Unit<Complex<T>>>>::Output
[src]

impl<'a, 'b, T, CA, CB, const D: usize> Mul<&'b Transform<T, CB, D>> for &'a Transform<T, CA, D> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    CA: TCategoryMul<CB>,
    CB: TCategory,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <CA as TCategoryMul<CB>>::Representative, D>

pub fn mul(
    self,
    rhs: &'b Transform<T, CB, D>
) -> <&'a Transform<T, CA, D> as Mul<&'b Transform<T, CB, D>>>::Output
[src]

impl<const D: usize> Mul<Point<i8, D>> for i8[src]

type Output = Point<i8, D>

pub fn mul(self, right: Point<i8, D>) -> <i8 as Mul<Point<i8, D>>>::Output[src]

impl<T> Mul<Unit<DualQuaternion<T>>> for Translation<T, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<DualQuaternion<T>>

pub fn mul(
    self,
    rhs: Unit<DualQuaternion<T>>
) -> <Translation<T, 3_usize> as Mul<Unit<DualQuaternion<T>>>>::Output
[src]

impl<'a, 'b, T, C, const D: usize> Mul<&'b Translation<T, D>> for &'a Transform<T, C, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: &'b Translation<T, D>
) -> <&'a Transform<T, C, D> as Mul<&'b Translation<T, D>>>::Output
[src]

impl<'b, R, C, S> Mul<&'b Matrix<i32, R, C, S>> for i32 where
    C: Dim,
    R: Dim,
    S: Storage<i32, R, C>,
    DefaultAllocator: Allocator<i32, R, C>, 
[src]

type Output = Matrix<i32, R, C, <DefaultAllocator as Allocator<i32, R, C>>::Buffer>

pub fn mul(
    self,
    rhs: &'b Matrix<i32, R, C, S>
) -> <i32 as Mul<&'b Matrix<i32, R, C, S>>>::Output
[src]

impl<'a, 'b, T, S> Mul<&'b Unit<Matrix<T, Const<2_usize>, Const<1_usize>, S>>> for &'a Unit<Complex<T>> where
    T: SimdRealField,
    S: Storage<T, Const<2_usize>, Const<1_usize>>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, ArrayStorage<T, 2_usize, 1_usize>>>

pub fn mul(
    self,
    rhs: &'b Unit<Matrix<T, Const<2_usize>, Const<1_usize>, S>>
) -> <&'a Unit<Complex<T>> as Mul<&'b Unit<Matrix<T, Const<2_usize>, Const<1_usize>, S>>>>::Output
[src]

impl<'a, T, C> Mul<Unit<Quaternion<T>>> for &'a Transform<T, C, 3_usize> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, 3_usize>

pub fn mul(
    self,
    rhs: Unit<Quaternion<T>>
) -> <&'a Transform<T, C, 3_usize> as Mul<Unit<Quaternion<T>>>>::Output
[src]

impl<'a, 'b, T, R1, C1, SA, const D2: usize> Mul<&'b Rotation<T, D2>> for &'a Matrix<T, R1, C1, SA> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T>,
    R1: Dim,
    C1: Dim,
    SA: Storage<T, R1, C1>,
    DefaultAllocator: Allocator<T, R1, Const<D2>>,
    ShapeConstraint: AreMultipliable<R1, C1, Const<D2>, Const<D2>>, 
[src]

type Output = Matrix<T, R1, Const<D2>, <DefaultAllocator as Allocator<T, R1, Const<D2>>>::Buffer>

pub fn mul(
    self,
    right: &'b Rotation<T, D2>
) -> <&'a Matrix<T, R1, C1, SA> as Mul<&'b Rotation<T, D2>>>::Output
[src]

impl<'b, T> Mul<&'b DualQuaternion<T>> for Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = DualQuaternion<T>

pub fn mul(
    self,
    rhs: &'b DualQuaternion<T>
) -> <Unit<DualQuaternion<T>> as Mul<&'b DualQuaternion<T>>>::Output
[src]

impl<T, SB> Mul<Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>> for Unit<Quaternion<T>> where
    T: SimdRealField,
    SB: Storage<T, Const<3_usize>, Const<1_usize>>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, ArrayStorage<T, 3_usize, 1_usize>>>

pub fn mul(
    self,
    rhs: Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>
) -> <Unit<Quaternion<T>> as Mul<Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>>>::Output
[src]

impl<'a, 'b, T, const D: usize> Mul<&'b Rotation<T, D>> for &'a Similarity<T, Rotation<T, D>, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, Rotation<T, D>, D>

pub fn mul(
    self,
    rhs: &'b Rotation<T, D>
) -> <&'a Similarity<T, Rotation<T, D>, D> as Mul<&'b Rotation<T, D>>>::Output
[src]

impl<'a, 'b, T, R, const D: usize> Mul<&'b Similarity<T, R, D>> for &'a Translation<T, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, R, D>

pub fn mul(
    self,
    right: &'b Similarity<T, R, D>
) -> <&'a Translation<T, D> as Mul<&'b Similarity<T, R, D>>>::Output
[src]

impl<'a, 'b, T, const D: usize> Mul<&'b Isometry<T, Rotation<T, D>, D>> for &'a Rotation<T, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Rotation<T, D>, D>

pub fn mul(
    self,
    right: &'b Isometry<T, Rotation<T, D>, D>
) -> <&'a Rotation<T, D> as Mul<&'b Isometry<T, Rotation<T, D>, D>>>::Output
[src]

impl<'a, 'b, T, C, const D: usize> Mul<&'b Rotation<T, D>> for &'a Transform<T, C, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: &'b Rotation<T, D>
) -> <&'a Transform<T, C, D> as Mul<&'b Rotation<T, D>>>::Output
[src]

impl<T, R, const D: usize> Mul<Translation<T, D>> for Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, R, D>

pub fn mul(
    self,
    right: Translation<T, D>
) -> <Isometry<T, R, D> as Mul<Translation<T, D>>>::Output
[src]

impl<'b, T> Mul<&'b Similarity<T, Unit<Quaternion<T>>, 3_usize>> for Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, Unit<Quaternion<T>>, 3_usize>

pub fn mul(
    self,
    right: &'b Similarity<T, Unit<Quaternion<T>>, 3_usize>
) -> <Unit<Quaternion<T>> as Mul<&'b Similarity<T, Unit<Quaternion<T>>, 3_usize>>>::Output
[src]

impl<'b, const D: usize> Mul<&'b Point<i16, D>> for i16[src]

type Output = Point<i16, D>

pub fn mul(
    self,
    right: &'b Point<i16, D>
) -> <i16 as Mul<&'b Point<i16, D>>>::Output
[src]

impl<R, C, S> Mul<Matrix<i16, R, C, S>> for i16 where
    C: Dim,
    R: Dim,
    S: Storage<i16, R, C>,
    DefaultAllocator: Allocator<i16, R, C>, 
[src]

type Output = Matrix<i16, R, C, <DefaultAllocator as Allocator<i16, R, C>>::Buffer>

pub fn mul(
    self,
    rhs: Matrix<i16, R, C, S>
) -> <i16 as Mul<Matrix<i16, R, C, S>>>::Output
[src]

impl<'b, T, R, const D: usize> Mul<&'b Similarity<T, R, D>> for Similarity<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, R, D>

pub fn mul(
    self,
    rhs: &'b Similarity<T, R, D>
) -> <Similarity<T, R, D> as Mul<&'b Similarity<T, R, D>>>::Output
[src]

impl<'b, T, SA, const D2: usize, const R1: usize, const C1: usize> Mul<&'b Point<T, D2>> for Matrix<T, Const<R1>, Const<C1>, SA> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T>,
    SA: Storage<T, Const<R1>, Const<C1>>,
    ShapeConstraint: AreMultipliable<Const<R1>, Const<C1>, Const<D2>, Const<1_usize>>, 
[src]

type Output = Point<T, R1>

pub fn mul(
    self,
    right: &'b Point<T, D2>
) -> <Matrix<T, Const<R1>, Const<C1>, SA> as Mul<&'b Point<T, D2>>>::Output
[src]

impl<'b, T, R, const D: usize> Mul<&'b Similarity<T, R, D>> for Translation<T, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, R, D>

pub fn mul(
    self,
    right: &'b Similarity<T, R, D>
) -> <Translation<T, D> as Mul<&'b Similarity<T, R, D>>>::Output
[src]

impl<'b, T, const D: usize> Mul<&'b Rotation<T, D>> for Translation<T, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Rotation<T, D>, D>

pub fn mul(
    self,
    right: &'b Rotation<T, D>
) -> <Translation<T, D> as Mul<&'b Rotation<T, D>>>::Output
[src]

impl<T, const D: usize> Mul<Point<T, D>> for Translation<T, D> where
    T: ClosedAdd<T> + Scalar,
    ShapeConstraint: SameNumberOfRows<Const<D>, Const<D>>,
    ShapeConstraint: SameNumberOfColumns<Const<1_usize>, Const<1_usize>>,
    <ShapeConstraint as SameNumberOfRows<Const<D>, Const<D>>>::Representative == Const<D>,
    <ShapeConstraint as SameNumberOfColumns<Const<1_usize>, Const<1_usize>>>::Representative == Const<1_usize>, 
[src]

type Output = Point<T, D>

pub fn mul(
    self,
    right: Point<T, D>
) -> <Translation<T, D> as Mul<Point<T, D>>>::Output
[src]

impl<T, const D: usize> Mul<Rotation<T, D>> for Rotation<T, D> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T>, 
[src]

type Output = Rotation<T, D>

pub fn mul(
    self,
    right: Rotation<T, D>
) -> <Rotation<T, D> as Mul<Rotation<T, D>>>::Output
[src]

impl<'a, 'b, T, S, const D: usize> Mul<&'b Unit<Matrix<T, Const<D>, Const<1_usize>, S>>> for &'a Rotation<T, D> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T>,
    S: Storage<T, Const<D>, Const<1_usize>>,
    ShapeConstraint: AreMultipliable<Const<D>, Const<D>, Const<D>, Const<1_usize>>, 
[src]

type Output = Unit<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>

pub fn mul(
    self,
    right: &'b Unit<Matrix<T, Const<D>, Const<1_usize>, S>>
) -> <&'a Rotation<T, D> as Mul<&'b Unit<Matrix<T, Const<D>, Const<1_usize>, S>>>>::Output
[src]

impl<'a, 'b, T, const D: usize> Mul<&'b Rotation<T, D>> for &'a Rotation<T, D> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T>, 
[src]

type Output = Rotation<T, D>

pub fn mul(
    self,
    right: &'b Rotation<T, D>
) -> <&'a Rotation<T, D> as Mul<&'b Rotation<T, D>>>::Output
[src]

impl<'a, T> Mul<Unit<Quaternion<T>>> for &'a Rotation<T, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Quaternion<T>>

pub fn mul(
    self,
    rhs: Unit<Quaternion<T>>
) -> <&'a Rotation<T, 3_usize> as Mul<Unit<Quaternion<T>>>>::Output
[src]

impl<'b, const D: usize> Mul<&'b Point<i32, D>> for i32[src]

type Output = Point<i32, D>

pub fn mul(
    self,
    right: &'b Point<i32, D>
) -> <i32 as Mul<&'b Point<i32, D>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Unit<Complex<T>>> for &'a Rotation<T, 2_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Complex<T>>

pub fn mul(
    self,
    rhs: &'b Unit<Complex<T>>
) -> <&'a Rotation<T, 2_usize> as Mul<&'b Unit<Complex<T>>>>::Output
[src]

impl<'a, T, C, R, const D: usize> Mul<Isometry<T, R, D>> for &'a Transform<T, C, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    R: SubsetOf<Matrix<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <DefaultAllocator as Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>>::Buffer>>,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: Isometry<T, R, D>
) -> <&'a Transform<T, C, D> as Mul<Isometry<T, R, D>>>::Output
[src]

impl<T, R2, C2, SB, const D1: usize> Mul<Matrix<T, R2, C2, SB>> for Rotation<T, D1> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T>,
    R2: Dim,
    C2: Dim,
    SB: Storage<T, R2, C2>,
    DefaultAllocator: Allocator<T, Const<D1>, C2>,
    ShapeConstraint: AreMultipliable<Const<D1>, Const<D1>, R2, C2>, 
[src]

type Output = Matrix<T, Const<D1>, C2, <DefaultAllocator as Allocator<T, Const<D1>, C2>>::Buffer>

pub fn mul(
    self,
    right: Matrix<T, R2, C2, SB>
) -> <Rotation<T, D1> as Mul<Matrix<T, R2, C2, SB>>>::Output
[src]

impl<'a, 'b, T, SB> Mul<&'b Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>> for &'a Unit<DualQuaternion<T>> where
    T: SimdRealField,
    SB: Storage<T, Const<{_: usize}>, Const<1_usize>>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, ArrayStorage<T, 3_usize, 1_usize>>>

pub fn mul(
    self,
    rhs: &'b Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>
) -> <&'a Unit<DualQuaternion<T>> as Mul<&'b Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>>>::Output
[src]

impl<'a, T, C, R, const D: usize> Mul<Transform<T, C, D>> for &'a Similarity<T, R, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    R: SubsetOf<Matrix<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <DefaultAllocator as Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>>::Buffer>>,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: Transform<T, C, D>
) -> <&'a Similarity<T, R, D> as Mul<Transform<T, C, D>>>::Output
[src]

impl<'a, T> Mul<Rotation<T, 3_usize>> for &'a Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Quaternion<T>>

pub fn mul(
    self,
    rhs: Rotation<T, 3_usize>
) -> <&'a Unit<Quaternion<T>> as Mul<Rotation<T, 3_usize>>>::Output
[src]

impl<'b, T> Mul<&'b Unit<Complex<T>>> for Isometry<T, Unit<Complex<T>>, 2_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Complex<T>>, 2_usize>

pub fn mul(
    self,
    rhs: &'b Unit<Complex<T>>
) -> <Isometry<T, Unit<Complex<T>>, 2_usize> as Mul<&'b Unit<Complex<T>>>>::Output
[src]

impl<T, const D: usize> Mul<Similarity<T, Rotation<T, D>, D>> for Rotation<T, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, Rotation<T, D>, D>

pub fn mul(
    self,
    right: Similarity<T, Rotation<T, D>, D>
) -> <Rotation<T, D> as Mul<Similarity<T, Rotation<T, D>, D>>>::Output
[src]

impl<'a, T, R, const D: usize> Mul<Translation<T, D>> for &'a Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, R, D>

pub fn mul(
    self,
    right: Translation<T, D>
) -> <&'a Isometry<T, R, D> as Mul<Translation<T, D>>>::Output
[src]

impl<T, C, R, const D: usize> Mul<Similarity<T, R, D>> for Transform<T, C, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    R: SubsetOf<Matrix<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <DefaultAllocator as Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>>::Buffer>>,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: Similarity<T, R, D>
) -> <Transform<T, C, D> as Mul<Similarity<T, R, D>>>::Output
[src]

impl<'a, T> Mul<Unit<DualQuaternion<T>>> for &'a Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<DualQuaternion<T>>

pub fn mul(
    self,
    rhs: Unit<DualQuaternion<T>>
) -> <&'a Unit<DualQuaternion<T>> as Mul<Unit<DualQuaternion<T>>>>::Output
[src]

impl<T, R1, C1, R2, C2, SA, SB> Mul<Matrix<T, R2, C2, SB>> for Matrix<T, R1, C1, SA> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T>,
    R2: Dim,
    C2: Dim,
    R1: Dim,
    C1: Dim,
    SB: Storage<T, R2, C2>,
    SA: Storage<T, R1, C1>,
    DefaultAllocator: Allocator<T, R1, C2>,
    ShapeConstraint: AreMultipliable<R1, C1, R2, C2>, 
[src]

type Output = Matrix<T, R1, C2, <DefaultAllocator as Allocator<T, R1, C2>>::Buffer>

pub fn mul(
    self,
    rhs: Matrix<T, R2, C2, SB>
) -> <Matrix<T, R1, C1, SA> as Mul<Matrix<T, R2, C2, SB>>>::Output
[src]

impl<T, R1, C1, SA, const D2: usize> Mul<Rotation<T, D2>> for Matrix<T, R1, C1, SA> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T>,
    R1: Dim,
    C1: Dim,
    SA: Storage<T, R1, C1>,
    DefaultAllocator: Allocator<T, R1, Const<D2>>,
    ShapeConstraint: AreMultipliable<R1, C1, Const<D2>, Const<D2>>, 
[src]

type Output = Matrix<T, R1, Const<D2>, <DefaultAllocator as Allocator<T, R1, Const<D2>>>::Buffer>

pub fn mul(
    self,
    right: Rotation<T, D2>
) -> <Matrix<T, R1, C1, SA> as Mul<Rotation<T, D2>>>::Output
[src]

impl<T> Mul<Unit<Complex<T>>> for Similarity<T, Unit<Complex<T>>, 2_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, Unit<Complex<T>>, 2_usize>

pub fn mul(
    self,
    rhs: Unit<Complex<T>>
) -> <Similarity<T, Unit<Complex<T>>, 2_usize> as Mul<Unit<Complex<T>>>>::Output
[src]

impl<'b, T, C, const D: usize> Mul<&'b Point<T, D>> for Transform<T, C, D> where
    C: TCategory,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Point<T, D>

pub fn mul(
    self,
    rhs: &'b Point<T, D>
) -> <Transform<T, C, D> as Mul<&'b Point<T, D>>>::Output
[src]

impl<'a, T> Mul<Point<T, 3_usize>> for &'a Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Point<T, 3_usize>

pub fn mul(
    self,
    rhs: Point<T, 3_usize>
) -> <&'a Unit<Quaternion<T>> as Mul<Point<T, 3_usize>>>::Output
[src]

impl<R, C, S> Mul<Matrix<u32, R, C, S>> for u32 where
    C: Dim,
    R: Dim,
    S: Storage<u32, R, C>,
    DefaultAllocator: Allocator<u32, R, C>, 
[src]

type Output = Matrix<u32, R, C, <DefaultAllocator as Allocator<u32, R, C>>::Buffer>

pub fn mul(
    self,
    rhs: Matrix<u32, R, C, S>
) -> <u32 as Mul<Matrix<u32, R, C, S>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Point<T, 3_usize>> for &'a Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Point<T, 3_usize>

pub fn mul(
    self,
    rhs: &'b Point<T, 3_usize>
) -> <&'a Unit<DualQuaternion<T>> as Mul<&'b Point<T, 3_usize>>>::Output
[src]

impl<'b, T, C, R, const D: usize> Mul<&'b Isometry<T, R, D>> for Transform<T, C, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    R: SubsetOf<Matrix<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <DefaultAllocator as Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>>::Buffer>>,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: &'b Isometry<T, R, D>
) -> <Transform<T, C, D> as Mul<&'b Isometry<T, R, D>>>::Output
[src]

impl<'a, 'b, T, R2, C2, SB, const D1: usize> Mul<&'b Matrix<T, R2, C2, SB>> for &'a Rotation<T, D1> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T>,
    R2: Dim,
    C2: Dim,
    SB: Storage<T, R2, C2>,
    DefaultAllocator: Allocator<T, Const<D1>, C2>,
    ShapeConstraint: AreMultipliable<Const<D1>, Const<D1>, R2, C2>, 
[src]

type Output = Matrix<T, Const<D1>, C2, <DefaultAllocator as Allocator<T, Const<D1>, C2>>::Buffer>

pub fn mul(
    self,
    right: &'b Matrix<T, R2, C2, SB>
) -> <&'a Rotation<T, D1> as Mul<&'b Matrix<T, R2, C2, SB>>>::Output
[src]

impl<'a, T, R1, C1, SA, const D2: usize> Mul<Rotation<T, D2>> for &'a Matrix<T, R1, C1, SA> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T>,
    R1: Dim,
    C1: Dim,
    SA: Storage<T, R1, C1>,
    DefaultAllocator: Allocator<T, R1, Const<D2>>,
    ShapeConstraint: AreMultipliable<R1, C1, Const<D2>, Const<D2>>, 
[src]

type Output = Matrix<T, R1, Const<D2>, <DefaultAllocator as Allocator<T, R1, Const<D2>>>::Buffer>

pub fn mul(
    self,
    right: Rotation<T, D2>
) -> <&'a Matrix<T, R1, C1, SA> as Mul<Rotation<T, D2>>>::Output
[src]

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

type Output = Quaternion<f32>

pub fn mul(
    self,
    right: Quaternion<f32>
) -> <f32 as Mul<Quaternion<f32>>>::Output
[src]

impl<'b, T> Mul<&'b Point<T, 3_usize>> for Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Point<T, 3_usize>

pub fn mul(
    self,
    rhs: &'b Point<T, 3_usize>
) -> <Unit<Quaternion<T>> as Mul<&'b Point<T, 3_usize>>>::Output
[src]

impl<T, SB> Mul<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>> for Unit<DualQuaternion<T>> where
    T: SimdRealField,
    SB: Storage<T, Const<{_: usize}>, Const<1_usize>>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Matrix<T, Const<{_: usize}>, Const<1_usize>, ArrayStorage<T, 3_usize, 1_usize>>

pub fn mul(
    self,
    rhs: Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>
) -> <Unit<DualQuaternion<T>> as Mul<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>>::Output
[src]

impl<T, R, const D: usize> Mul<Point<T, D>> for Similarity<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Point<T, D>

pub fn mul(
    self,
    right: Point<T, D>
) -> <Similarity<T, R, D> as Mul<Point<T, D>>>::Output
[src]

impl<'a, T, const D: usize> Mul<Point<T, D>> for &'a Translation<T, D> where
    T: ClosedAdd<T> + Scalar,
    ShapeConstraint: SameNumberOfRows<Const<D>, Const<D>>,
    ShapeConstraint: SameNumberOfColumns<Const<1_usize>, Const<1_usize>>,
    <ShapeConstraint as SameNumberOfRows<Const<D>, Const<D>>>::Representative == Const<D>,
    <ShapeConstraint as SameNumberOfColumns<Const<1_usize>, Const<1_usize>>>::Representative == Const<1_usize>, 
[src]

type Output = Point<T, D>

pub fn mul(
    self,
    right: Point<T, D>
) -> <&'a Translation<T, D> as Mul<Point<T, D>>>::Output
[src]

impl<'a, T, const D: usize> Mul<Isometry<T, Rotation<T, D>, D>> for &'a Rotation<T, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Rotation<T, D>, D>

pub fn mul(
    self,
    right: Isometry<T, Rotation<T, D>, D>
) -> <&'a Rotation<T, D> as Mul<Isometry<T, Rotation<T, D>, D>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Unit<DualQuaternion<T>>> for &'a DualQuaternion<T> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = DualQuaternion<T>

pub fn mul(
    self,
    rhs: &'b Unit<DualQuaternion<T>>
) -> <&'a DualQuaternion<T> as Mul<&'b Unit<DualQuaternion<T>>>>::Output
[src]

impl<R, C, S> Mul<Matrix<u16, R, C, S>> for u16 where
    C: Dim,
    R: Dim,
    S: Storage<u16, R, C>,
    DefaultAllocator: Allocator<u16, R, C>, 
[src]

type Output = Matrix<u16, R, C, <DefaultAllocator as Allocator<u16, R, C>>::Buffer>

pub fn mul(
    self,
    rhs: Matrix<u16, R, C, S>
) -> <u16 as Mul<Matrix<u16, R, C, S>>>::Output
[src]

impl<const D: usize> Mul<Point<isize, D>> for isize[src]

type Output = Point<isize, D>

pub fn mul(
    self,
    right: Point<isize, D>
) -> <isize as Mul<Point<isize, D>>>::Output
[src]

impl<'a, 'b, T, SB> Mul<&'b Matrix<T, Const<3_usize>, Const<1_usize>, SB>> for &'a Unit<Quaternion<T>> where
    T: SimdRealField,
    SB: Storage<T, Const<3_usize>, Const<1_usize>>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Matrix<T, Const<{_: usize}>, Const<1_usize>, ArrayStorage<T, 3_usize, 1_usize>>

pub fn mul(
    self,
    rhs: &'b Matrix<T, Const<3_usize>, Const<1_usize>, SB>
) -> <&'a Unit<Quaternion<T>> as Mul<&'b Matrix<T, Const<3_usize>, Const<1_usize>, SB>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Isometry<T, Unit<Quaternion<T>>, 3_usize>> for &'a Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Quaternion<T>>, 3_usize>

pub fn mul(
    self,
    right: &'b Isometry<T, Unit<Quaternion<T>>, 3_usize>
) -> <&'a Unit<Quaternion<T>> as Mul<&'b Isometry<T, Unit<Quaternion<T>>, 3_usize>>>::Output
[src]

impl<'a, T, R, const D: usize> Mul<Similarity<T, R, D>> for &'a Translation<T, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, R, D>

pub fn mul(
    self,
    right: Similarity<T, R, D>
) -> <&'a Translation<T, D> as Mul<Similarity<T, R, D>>>::Output
[src]

impl<'a, 'b, T, const D: usize> Mul<&'b Translation<T, D>> for &'a Rotation<T, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Rotation<T, D>, D>

pub fn mul(
    self,
    right: &'b Translation<T, D>
) -> <&'a Rotation<T, D> as Mul<&'b Translation<T, D>>>::Output
[src]

impl<'a, T, SB> Mul<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>> for &'a Unit<Quaternion<T>> where
    T: SimdRealField,
    SB: Storage<T, Const<3_usize>, Const<1_usize>>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Matrix<T, Const<{_: usize}>, Const<1_usize>, ArrayStorage<T, 3_usize, 1_usize>>

pub fn mul(
    self,
    rhs: Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>
) -> <&'a Unit<Quaternion<T>> as Mul<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>>::Output
[src]

impl<T, SB> Mul<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>> for Unit<Quaternion<T>> where
    T: SimdRealField,
    SB: Storage<T, Const<3_usize>, Const<1_usize>>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Matrix<T, Const<{_: usize}>, Const<1_usize>, ArrayStorage<T, 3_usize, 1_usize>>

pub fn mul(
    self,
    rhs: Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>
) -> <Unit<Quaternion<T>> as Mul<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>>::Output
[src]

impl<T, const D: usize> Mul<Point<T, D>> for Rotation<T, D> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T>,
    ShapeConstraint: AreMultipliable<Const<D>, Const<D>, Const<D>, Const<1_usize>>, 
[src]

type Output = Point<T, D>

pub fn mul(
    self,
    right: Point<T, D>
) -> <Rotation<T, D> as Mul<Point<T, D>>>::Output
[src]

impl<'b, const D: usize> Mul<&'b Point<u32, D>> for u32[src]

type Output = Point<u32, D>

pub fn mul(
    self,
    right: &'b Point<u32, D>
) -> <u32 as Mul<&'b Point<u32, D>>>::Output
[src]

impl<T, C, const D: usize> Mul<Transform<T, C, D>> for Translation<T, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: Transform<T, C, D>
) -> <Translation<T, D> as Mul<Transform<T, C, D>>>::Output
[src]

impl<'a, 'b, T, C, R, const D: usize> Mul<&'b Transform<T, C, D>> for &'a Isometry<T, R, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    R: SubsetOf<Matrix<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <DefaultAllocator as Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>>::Buffer>>,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: &'b Transform<T, C, D>
) -> <&'a Isometry<T, R, D> as Mul<&'b Transform<T, C, D>>>::Output
[src]

impl<const D: usize> Mul<Point<f64, D>> for f64[src]

type Output = Point<f64, D>

pub fn mul(self, right: Point<f64, D>) -> <f64 as Mul<Point<f64, D>>>::Output[src]

impl<'b, T, S> Mul<&'b Unit<Matrix<T, Const<2_usize>, Const<1_usize>, S>>> for Unit<Complex<T>> where
    T: SimdRealField,
    S: Storage<T, Const<2_usize>, Const<1_usize>>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, ArrayStorage<T, 2_usize, 1_usize>>>

pub fn mul(
    self,
    rhs: &'b Unit<Matrix<T, Const<2_usize>, Const<1_usize>, S>>
) -> <Unit<Complex<T>> as Mul<&'b Unit<Matrix<T, Const<2_usize>, Const<1_usize>, S>>>>::Output
[src]

impl<'a, T> Mul<Unit<Complex<T>>> for &'a Similarity<T, Unit<Complex<T>>, 2_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, Unit<Complex<T>>, 2_usize>

pub fn mul(
    self,
    rhs: Unit<Complex<T>>
) -> <&'a Similarity<T, Unit<Complex<T>>, 2_usize> as Mul<Unit<Complex<T>>>>::Output
[src]

impl<'a, T, R, const D: usize> Mul<Similarity<T, R, D>> for &'a Similarity<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, R, D>

pub fn mul(
    self,
    rhs: Similarity<T, R, D>
) -> <&'a Similarity<T, R, D> as Mul<Similarity<T, R, D>>>::Output
[src]

impl<T> Mul<Rotation<T, 2_usize>> for Unit<Complex<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Complex<T>>

pub fn mul(
    self,
    rhs: Rotation<T, 2_usize>
) -> <Unit<Complex<T>> as Mul<Rotation<T, 2_usize>>>::Output
[src]

impl<'a, T, R2, C2, SB, const D1: usize> Mul<Matrix<T, R2, C2, SB>> for &'a Rotation<T, D1> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T>,
    R2: Dim,
    C2: Dim,
    SB: Storage<T, R2, C2>,
    DefaultAllocator: Allocator<T, Const<D1>, C2>,
    ShapeConstraint: AreMultipliable<Const<D1>, Const<D1>, R2, C2>, 
[src]

type Output = Matrix<T, Const<D1>, C2, <DefaultAllocator as Allocator<T, Const<D1>, C2>>::Buffer>

pub fn mul(
    self,
    right: Matrix<T, R2, C2, SB>
) -> <&'a Rotation<T, D1> as Mul<Matrix<T, R2, C2, SB>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Translation<T, 3_usize>> for &'a Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Quaternion<T>>, 3_usize>

pub fn mul(
    self,
    right: &'b Translation<T, 3_usize>
) -> <&'a Unit<Quaternion<T>> as Mul<&'b Translation<T, 3_usize>>>::Output
[src]

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

type Output = DualQuaternion<f64>

pub fn mul(
    self,
    right: DualQuaternion<f64>
) -> <f64 as Mul<DualQuaternion<f64>>>::Output
[src]

impl<'a, T> Mul<T> for &'a Quaternion<T> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Quaternion<T>

pub fn mul(self, n: T) -> <&'a Quaternion<T> as Mul<T>>::Output[src]

impl<'b, T, R, const D: usize> Mul<&'b Point<T, D>> for Similarity<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Point<T, D>

pub fn mul(
    self,
    right: &'b Point<T, D>
) -> <Similarity<T, R, D> as Mul<&'b Point<T, D>>>::Output
[src]

impl<'b, T, const D: usize> Mul<&'b Similarity<T, Rotation<T, D>, D>> for Rotation<T, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, Rotation<T, D>, D>

pub fn mul(
    self,
    right: &'b Similarity<T, Rotation<T, D>, D>
) -> <Rotation<T, D> as Mul<&'b Similarity<T, Rotation<T, D>, D>>>::Output
[src]

impl<T, C, R, const D: usize> Mul<Transform<T, C, D>> for Similarity<T, R, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    R: SubsetOf<Matrix<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <DefaultAllocator as Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>>::Buffer>>,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: Transform<T, C, D>
) -> <Similarity<T, R, D> as Mul<Transform<T, C, D>>>::Output
[src]

impl<'b, T> Mul<&'b Rotation<T, 3_usize>> for Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Quaternion<T>>

pub fn mul(
    self,
    rhs: &'b Rotation<T, 3_usize>
) -> <Unit<Quaternion<T>> as Mul<&'b Rotation<T, 3_usize>>>::Output
[src]

impl<'a, 'b, T, S> Mul<&'b Matrix<T, Const<2_usize>, Const<1_usize>, S>> for &'a Unit<Complex<T>> where
    T: SimdRealField,
    S: Storage<T, Const<2_usize>, Const<1_usize>>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Matrix<T, Const<{_: usize}>, Const<1_usize>, ArrayStorage<T, 2_usize, 1_usize>>

pub fn mul(
    self,
    rhs: &'b Matrix<T, Const<2_usize>, Const<1_usize>, S>
) -> <&'a Unit<Complex<T>> as Mul<&'b Matrix<T, Const<2_usize>, Const<1_usize>, S>>>::Output
[src]

impl<'a, T> Mul<Point<T, 3_usize>> for &'a Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Point<T, 3_usize>

pub fn mul(
    self,
    rhs: Point<T, 3_usize>
) -> <&'a Unit<DualQuaternion<T>> as Mul<Point<T, 3_usize>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Similarity<T, Unit<Complex<T>>, 2_usize>> for &'a Unit<Complex<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, Unit<Complex<T>>, 2_usize>

pub fn mul(
    self,
    rhs: &'b Similarity<T, Unit<Complex<T>>, 2_usize>
) -> <&'a Unit<Complex<T>> as Mul<&'b Similarity<T, Unit<Complex<T>>, 2_usize>>>::Output
[src]

impl<T> Mul<Translation<T, 3_usize>> for Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<DualQuaternion<T>>

pub fn mul(
    self,
    rhs: Translation<T, 3_usize>
) -> <Unit<DualQuaternion<T>> as Mul<Translation<T, 3_usize>>>::Output
[src]

impl<'a, T, C, const D: usize> Mul<Rotation<T, D>> for &'a Transform<T, C, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: Rotation<T, D>
) -> <&'a Transform<T, C, D> as Mul<Rotation<T, D>>>::Output
[src]

impl<const D: usize> Mul<Point<i32, D>> for i32[src]

type Output = Point<i32, D>

pub fn mul(self, right: Point<i32, D>) -> <i32 as Mul<Point<i32, D>>>::Output[src]

impl<T, const D: usize> Mul<Rotation<T, D>> for Similarity<T, Rotation<T, D>, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, Rotation<T, D>, D>

pub fn mul(
    self,
    rhs: Rotation<T, D>
) -> <Similarity<T, Rotation<T, D>, D> as Mul<Rotation<T, D>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Translation<T, 3_usize>> for &'a Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<DualQuaternion<T>>

pub fn mul(
    self,
    rhs: &'b Translation<T, 3_usize>
) -> <&'a Unit<DualQuaternion<T>> as Mul<&'b Translation<T, 3_usize>>>::Output
[src]

impl<'b, const D: usize> Mul<&'b Point<f64, D>> for f64[src]

type Output = Point<f64, D>

pub fn mul(
    self,
    right: &'b Point<f64, D>
) -> <f64 as Mul<&'b Point<f64, D>>>::Output
[src]

impl<'b, T> Mul<&'b Translation<T, 3_usize>> for Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Quaternion<T>>, 3_usize>

pub fn mul(
    self,
    right: &'b Translation<T, 3_usize>
) -> <Unit<Quaternion<T>> as Mul<&'b Translation<T, 3_usize>>>::Output
[src]

impl<T, const D: usize> Mul<T> for Point<T, D> where
    T: Scalar + ClosedMul<T>, 
[src]

type Output = Point<T, D>

pub fn mul(self, right: T) -> <Point<T, D> as Mul<T>>::Output[src]

impl<'b> Mul<&'b DualQuaternion<f32>> for f32[src]

type Output = DualQuaternion<f32>

pub fn mul(
    self,
    right: &'b DualQuaternion<f32>
) -> <f32 as Mul<&'b DualQuaternion<f32>>>::Output
[src]

impl<'b, R, C, S> Mul<&'b Matrix<i8, R, C, S>> for i8 where
    C: Dim,
    R: Dim,
    S: Storage<i8, R, C>,
    DefaultAllocator: Allocator<i8, R, C>, 
[src]

type Output = Matrix<i8, R, C, <DefaultAllocator as Allocator<i8, R, C>>::Buffer>

pub fn mul(
    self,
    rhs: &'b Matrix<i8, R, C, S>
) -> <i8 as Mul<&'b Matrix<i8, R, C, S>>>::Output
[src]

impl<'a, T> Mul<Unit<Quaternion<T>>> for &'a Isometry<T, Unit<Quaternion<T>>, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Quaternion<T>>, 3_usize>

pub fn mul(
    self,
    rhs: Unit<Quaternion<T>>
) -> <&'a Isometry<T, Unit<Quaternion<T>>, 3_usize> as Mul<Unit<Quaternion<T>>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Unit<DualQuaternion<T>>> for &'a Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<DualQuaternion<T>>

pub fn mul(
    self,
    rhs: &'b Unit<DualQuaternion<T>>
) -> <&'a Unit<Quaternion<T>> as Mul<&'b Unit<DualQuaternion<T>>>>::Output
[src]

impl<'b, T, R, const D: usize> Mul<&'b Isometry<T, R, D>> for Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, R, D>

pub fn mul(
    self,
    rhs: &'b Isometry<T, R, D>
) -> <Isometry<T, R, D> as Mul<&'b Isometry<T, R, D>>>::Output
[src]

impl<'a, 'b, T, const D: usize> Mul<&'b Similarity<T, Rotation<T, D>, D>> for &'a Rotation<T, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, Rotation<T, D>, D>

pub fn mul(
    self,
    right: &'b Similarity<T, Rotation<T, D>, D>
) -> <&'a Rotation<T, D> as Mul<&'b Similarity<T, Rotation<T, D>, D>>>::Output
[src]

impl<'b, T, C, R, const D: usize> Mul<&'b Similarity<T, R, D>> for Transform<T, C, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    R: SubsetOf<Matrix<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <DefaultAllocator as Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>>::Buffer>>,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: &'b Similarity<T, R, D>
) -> <Transform<T, C, D> as Mul<&'b Similarity<T, R, D>>>::Output
[src]

impl<'a, T, const D: usize> Mul<T> for &'a Point<T, D> where
    T: Scalar + ClosedMul<T>, 
[src]

type Output = Point<T, D>

pub fn mul(self, right: T) -> <&'a Point<T, D> as Mul<T>>::Output[src]

impl<T, R, const D: usize> Mul<Isometry<T, R, D>> for Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, R, D>

pub fn mul(
    self,
    rhs: Isometry<T, R, D>
) -> <Isometry<T, R, D> as Mul<Isometry<T, R, D>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Unit<Quaternion<T>>> for &'a Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<DualQuaternion<T>>

pub fn mul(
    self,
    rhs: &'b Unit<Quaternion<T>>
) -> <&'a Unit<DualQuaternion<T>> as Mul<&'b Unit<Quaternion<T>>>>::Output
[src]

impl<'a, T, R, const D: usize> Mul<Translation<T, D>> for &'a Similarity<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, R, D>

pub fn mul(
    self,
    right: Translation<T, D>
) -> <&'a Similarity<T, R, D> as Mul<Translation<T, D>>>::Output
[src]

impl<T> Mul<Unit<Complex<T>>> for Translation<T, 2_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Complex<T>>, 2_usize>

pub fn mul(
    self,
    right: Unit<Complex<T>>
) -> <Translation<T, 2_usize> as Mul<Unit<Complex<T>>>>::Output
[src]

impl<T> Mul<T> for Quaternion<T> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Quaternion<T>

pub fn mul(self, n: T) -> <Quaternion<T> as Mul<T>>::Output[src]

impl<'a, T> Mul<Isometry<T, Unit<Quaternion<T>>, 3_usize>> for &'a Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<DualQuaternion<T>>

pub fn mul(
    self,
    rhs: Isometry<T, Unit<Quaternion<T>>, 3_usize>
) -> <&'a Unit<DualQuaternion<T>> as Mul<Isometry<T, Unit<Quaternion<T>>, 3_usize>>>::Output
[src]

impl<'b, T> Mul<&'b Unit<DualQuaternion<T>>> for Translation<T, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<DualQuaternion<T>>

pub fn mul(
    self,
    rhs: &'b Unit<DualQuaternion<T>>
) -> <Translation<T, 3_usize> as Mul<&'b Unit<DualQuaternion<T>>>>::Output
[src]

impl<'a, 'b, T, C, const D: usize> Mul<&'b Transform<T, C, D>> for &'a Translation<T, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: &'b Transform<T, C, D>
) -> <&'a Translation<T, D> as Mul<&'b Transform<T, C, D>>>::Output
[src]

impl<T> Mul<Point<T, 3_usize>> for Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Point<T, 3_usize>

pub fn mul(
    self,
    rhs: Point<T, 3_usize>
) -> <Unit<Quaternion<T>> as Mul<Point<T, 3_usize>>>::Output
[src]

impl<'a, 'b, T, SB> Mul<&'b Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>> for &'a Unit<DualQuaternion<T>> where
    T: SimdRealField,
    SB: Storage<T, Const<{_: usize}>, Const<1_usize>>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Matrix<T, Const<{_: usize}>, Const<1_usize>, ArrayStorage<T, 3_usize, 1_usize>>

pub fn mul(
    self,
    rhs: &'b Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>
) -> <&'a Unit<DualQuaternion<T>> as Mul<&'b Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>>::Output
[src]

impl<'a, 'b, T, C, const D: usize> Mul<&'b Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>> for &'a Transform<T, C, D> where
    C: TCategory,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>

pub fn mul(
    self,
    rhs: &'b Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>
) -> <&'a Transform<T, C, D> as Mul<&'b Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>>::Output
[src]

impl<'a, T> Mul<Isometry<T, Unit<Quaternion<T>>, 3_usize>> for &'a Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Quaternion<T>>, 3_usize>

pub fn mul(
    self,
    right: Isometry<T, Unit<Quaternion<T>>, 3_usize>
) -> <&'a Unit<Quaternion<T>> as Mul<Isometry<T, Unit<Quaternion<T>>, 3_usize>>>::Output
[src]

impl<'b, T, C> Mul<&'b Unit<Quaternion<T>>> for Transform<T, C, 3_usize> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, 3_usize>

pub fn mul(
    self,
    rhs: &'b Unit<Quaternion<T>>
) -> <Transform<T, C, 3_usize> as Mul<&'b Unit<Quaternion<T>>>>::Output
[src]

impl<'a, 'b, T, R, const D: usize> Mul<&'b Isometry<T, R, D>> for &'a Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, R, D>

pub fn mul(
    self,
    rhs: &'b Isometry<T, R, D>
) -> <&'a Isometry<T, R, D> as Mul<&'b Isometry<T, R, D>>>::Output
[src]

impl<'a, 'b, T, R, const D: usize> Mul<&'b Translation<T, D>> for &'a Similarity<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, R, D>

pub fn mul(
    self,
    right: &'b Translation<T, D>
) -> <&'a Similarity<T, R, D> as Mul<&'b Translation<T, D>>>::Output
[src]

impl<'b, T> Mul<&'b Isometry<T, Unit<Quaternion<T>>, 3_usize>> for Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Quaternion<T>>, 3_usize>

pub fn mul(
    self,
    right: &'b Isometry<T, Unit<Quaternion<T>>, 3_usize>
) -> <Unit<Quaternion<T>> as Mul<&'b Isometry<T, Unit<Quaternion<T>>, 3_usize>>>::Output
[src]

impl<R, C, S> Mul<Matrix<u8, R, C, S>> for u8 where
    C: Dim,
    R: Dim,
    S: Storage<u8, R, C>,
    DefaultAllocator: Allocator<u8, R, C>, 
[src]

type Output = Matrix<u8, R, C, <DefaultAllocator as Allocator<u8, R, C>>::Buffer>

pub fn mul(
    self,
    rhs: Matrix<u8, R, C, S>
) -> <u8 as Mul<Matrix<u8, R, C, S>>>::Output
[src]

impl<T, C, R, const D: usize> Mul<Transform<T, C, D>> for Isometry<T, R, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    R: SubsetOf<Matrix<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <DefaultAllocator as Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>>::Buffer>>,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: Transform<T, C, D>
) -> <Isometry<T, R, D> as Mul<Transform<T, C, D>>>::Output
[src]

impl<'a, 'b, T, C, R, const D: usize> Mul<&'b Transform<T, C, D>> for &'a Similarity<T, R, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    R: SubsetOf<Matrix<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <DefaultAllocator as Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>>::Buffer>>,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: &'b Transform<T, C, D>
) -> <&'a Similarity<T, R, D> as Mul<&'b Transform<T, C, D>>>::Output
[src]

impl<T> Mul<Unit<Quaternion<T>>> for Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Quaternion<T>>

pub fn mul(
    self,
    rhs: Unit<Quaternion<T>>
) -> <Unit<Quaternion<T>> as Mul<Unit<Quaternion<T>>>>::Output
[src]

impl<const D: usize> Mul<Point<u64, D>> for u64[src]

type Output = Point<u64, D>

pub fn mul(self, right: Point<u64, D>) -> <u64 as Mul<Point<u64, D>>>::Output[src]

impl<T, C, R, const D: usize> Mul<Isometry<T, R, D>> for Transform<T, C, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    R: SubsetOf<Matrix<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <DefaultAllocator as Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>>::Buffer>>,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: Isometry<T, R, D>
) -> <Transform<T, C, D> as Mul<Isometry<T, R, D>>>::Output
[src]

impl<T, R, const D: usize> Mul<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>> for Similarity<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>

pub fn mul(
    self,
    right: Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>
) -> <Similarity<T, R, D> as Mul<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>>::Output
[src]

impl<T> Mul<Unit<Complex<T>>> for Rotation<T, 2_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Complex<T>>

pub fn mul(
    self,
    rhs: Unit<Complex<T>>
) -> <Rotation<T, 2_usize> as Mul<Unit<Complex<T>>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Unit<DualQuaternion<T>>> for &'a Isometry<T, Unit<Quaternion<T>>, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<DualQuaternion<T>>

pub fn mul(
    self,
    rhs: &'b Unit<DualQuaternion<T>>
) -> <&'a Isometry<T, Unit<Quaternion<T>>, 3_usize> as Mul<&'b Unit<DualQuaternion<T>>>>::Output
[src]

impl<'a, T, S, const D: usize> Mul<Unit<Matrix<T, Const<D>, Const<1_usize>, S>>> for &'a Rotation<T, D> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T>,
    S: Storage<T, Const<D>, Const<1_usize>>,
    ShapeConstraint: AreMultipliable<Const<D>, Const<D>, Const<D>, Const<1_usize>>, 
[src]

type Output = Unit<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>

pub fn mul(
    self,
    right: Unit<Matrix<T, Const<D>, Const<1_usize>, S>>
) -> <&'a Rotation<T, D> as Mul<Unit<Matrix<T, Const<D>, Const<1_usize>, S>>>>::Output
[src]

impl<'b, T> Mul<&'b Isometry<T, Unit<Quaternion<T>>, 3_usize>> for Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<DualQuaternion<T>>

pub fn mul(
    self,
    rhs: &'b Isometry<T, Unit<Quaternion<T>>, 3_usize>
) -> <Unit<DualQuaternion<T>> as Mul<&'b Isometry<T, Unit<Quaternion<T>>, 3_usize>>>::Output
[src]

impl<T> Mul<Unit<Quaternion<T>>> for Isometry<T, Unit<Quaternion<T>>, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Quaternion<T>>, 3_usize>

pub fn mul(
    self,
    rhs: Unit<Quaternion<T>>
) -> <Isometry<T, Unit<Quaternion<T>>, 3_usize> as Mul<Unit<Quaternion<T>>>>::Output
[src]

impl<'a, T, C, const D: usize> Mul<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>> for &'a Transform<T, C, D> where
    C: TCategory,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>

pub fn mul(
    self,
    rhs: Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>
) -> <&'a Transform<T, C, D> as Mul<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>>::Output
[src]

impl<'a, T> Mul<Unit<DualQuaternion<T>>> for &'a Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<DualQuaternion<T>>

pub fn mul(
    self,
    rhs: Unit<DualQuaternion<T>>
) -> <&'a Unit<Quaternion<T>> as Mul<Unit<DualQuaternion<T>>>>::Output
[src]

impl<'a, 'b, T, R, const D: usize> Mul<&'b Unit<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>> for &'a Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>

pub fn mul(
    self,
    right: &'b Unit<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>
) -> <&'a Isometry<T, R, D> as Mul<&'b Unit<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>>>::Output
[src]

impl<'b, T> Mul<&'b Unit<Quaternion<T>>> for Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Quaternion<T>>

pub fn mul(
    self,
    rhs: &'b Unit<Quaternion<T>>
) -> <Unit<Quaternion<T>> as Mul<&'b Unit<Quaternion<T>>>>::Output
[src]

impl<T> Mul<Unit<Quaternion<T>>> for Rotation<T, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Quaternion<T>>

pub fn mul(
    self,
    rhs: Unit<Quaternion<T>>
) -> <Rotation<T, 3_usize> as Mul<Unit<Quaternion<T>>>>::Output
[src]

impl<'a, T> Mul<DualQuaternion<T>> for &'a Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = DualQuaternion<T>

pub fn mul(
    self,
    rhs: DualQuaternion<T>
) -> <&'a Unit<DualQuaternion<T>> as Mul<DualQuaternion<T>>>::Output
[src]

impl<'a, T, R, const D: usize> Mul<Similarity<T, R, D>> for &'a Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, R, D>

pub fn mul(
    self,
    rhs: Similarity<T, R, D>
) -> <&'a Isometry<T, R, D> as Mul<Similarity<T, R, D>>>::Output
[src]

impl<'a, T> Mul<Similarity<T, Unit<Complex<T>>, 2_usize>> for &'a Unit<Complex<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, Unit<Complex<T>>, 2_usize>

pub fn mul(
    self,
    rhs: Similarity<T, Unit<Complex<T>>, 2_usize>
) -> <&'a Unit<Complex<T>> as Mul<Similarity<T, Unit<Complex<T>>, 2_usize>>>::Output
[src]

impl<'b, R, C, S> Mul<&'b Matrix<isize, R, C, S>> for isize where
    C: Dim,
    R: Dim,
    S: Storage<isize, R, C>,
    DefaultAllocator: Allocator<isize, R, C>, 
[src]

type Output = Matrix<isize, R, C, <DefaultAllocator as Allocator<isize, R, C>>::Buffer>

pub fn mul(
    self,
    rhs: &'b Matrix<isize, R, C, S>
) -> <isize as Mul<&'b Matrix<isize, R, C, S>>>::Output
[src]

impl<'b, T> Mul<&'b Unit<DualQuaternion<T>>> for DualQuaternion<T> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = DualQuaternion<T>

pub fn mul(
    self,
    rhs: &'b Unit<DualQuaternion<T>>
) -> <DualQuaternion<T> as Mul<&'b Unit<DualQuaternion<T>>>>::Output
[src]

impl<'b, T, S> Mul<&'b Matrix<T, Const<2_usize>, Const<1_usize>, S>> for Unit<Complex<T>> where
    T: SimdRealField,
    S: Storage<T, Const<2_usize>, Const<1_usize>>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Matrix<T, Const<{_: usize}>, Const<1_usize>, ArrayStorage<T, 2_usize, 1_usize>>

pub fn mul(
    self,
    rhs: &'b Matrix<T, Const<2_usize>, Const<1_usize>, S>
) -> <Unit<Complex<T>> as Mul<&'b Matrix<T, Const<2_usize>, Const<1_usize>, S>>>::Output
[src]

impl<'b, T, R1, C1, R2, C2, SA, SB> Mul<&'b Matrix<T, R2, C2, SB>> for Matrix<T, R1, C1, SA> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T>,
    R2: Dim,
    C2: Dim,
    R1: Dim,
    C1: Dim,
    SB: Storage<T, R2, C2>,
    SA: Storage<T, R1, C1>,
    DefaultAllocator: Allocator<T, R1, C2>,
    ShapeConstraint: AreMultipliable<R1, C1, R2, C2>, 
[src]

type Output = Matrix<T, R1, C2, <DefaultAllocator as Allocator<T, R1, C2>>::Buffer>

pub fn mul(
    self,
    rhs: &'b Matrix<T, R2, C2, SB>
) -> <Matrix<T, R1, C1, SA> as Mul<&'b Matrix<T, R2, C2, SB>>>::Output
[src]

impl<'a, T> Mul<Isometry<T, Unit<Complex<T>>, 2_usize>> for &'a Unit<Complex<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Complex<T>>, 2_usize>

pub fn mul(
    self,
    rhs: Isometry<T, Unit<Complex<T>>, 2_usize>
) -> <&'a Unit<Complex<T>> as Mul<Isometry<T, Unit<Complex<T>>, 2_usize>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Unit<Quaternion<T>>> for &'a Rotation<T, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Quaternion<T>>

pub fn mul(
    self,
    rhs: &'b Unit<Quaternion<T>>
) -> <&'a Rotation<T, 3_usize> as Mul<&'b Unit<Quaternion<T>>>>::Output
[src]

impl<T, C> Mul<Transform<T, C, 3_usize>> for Unit<Quaternion<T>> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, 3_usize>

pub fn mul(
    self,
    rhs: Transform<T, C, 3_usize>
) -> <Unit<Quaternion<T>> as Mul<Transform<T, C, 3_usize>>>::Output
[src]

impl<'a, 'b, T, R, const D: usize> Mul<&'b Similarity<T, R, D>> for &'a Similarity<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, R, D>

pub fn mul(
    self,
    rhs: &'b Similarity<T, R, D>
) -> <&'a Similarity<T, R, D> as Mul<&'b Similarity<T, R, D>>>::Output
[src]

impl<T, R, const D: usize> Mul<Unit<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>> for Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>

pub fn mul(
    self,
    right: Unit<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>
) -> <Isometry<T, R, D> as Mul<Unit<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>>>::Output
[src]

impl<'b, const D: usize> Mul<&'b Point<u64, D>> for u64[src]

type Output = Point<u64, D>

pub fn mul(
    self,
    right: &'b Point<u64, D>
) -> <u64 as Mul<&'b Point<u64, D>>>::Output
[src]

impl<'b, T, SB> Mul<&'b Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>> for Unit<DualQuaternion<T>> where
    T: SimdRealField,
    SB: Storage<T, Const<{_: usize}>, Const<1_usize>>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, ArrayStorage<T, 3_usize, 1_usize>>>

pub fn mul(
    self,
    rhs: &'b Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>
) -> <Unit<DualQuaternion<T>> as Mul<&'b Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>>>::Output
[src]

impl<T> Mul<Unit<DualQuaternion<T>>> for Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<DualQuaternion<T>>

pub fn mul(
    self,
    rhs: Unit<DualQuaternion<T>>
) -> <Unit<DualQuaternion<T>> as Mul<Unit<DualQuaternion<T>>>>::Output
[src]

impl<'b, T, const D: usize> Mul<&'b Point<T, D>> for Rotation<T, D> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T>,
    ShapeConstraint: AreMultipliable<Const<D>, Const<D>, Const<D>, Const<1_usize>>, 
[src]

type Output = Point<T, D>

pub fn mul(
    self,
    right: &'b Point<T, D>
) -> <Rotation<T, D> as Mul<&'b Point<T, D>>>::Output
[src]

impl<'a, 'b, T, C> Mul<&'b Unit<Quaternion<T>>> for &'a Transform<T, C, 3_usize> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, 3_usize>

pub fn mul(
    self,
    rhs: &'b Unit<Quaternion<T>>
) -> <&'a Transform<T, C, 3_usize> as Mul<&'b Unit<Quaternion<T>>>>::Output
[src]

impl<'a, T> Mul<Rotation<T, 2_usize>> for &'a Unit<Complex<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Complex<T>>

pub fn mul(
    self,
    rhs: Rotation<T, 2_usize>
) -> <&'a Unit<Complex<T>> as Mul<Rotation<T, 2_usize>>>::Output
[src]

impl<T> Mul<Unit<Quaternion<T>>> for Translation<T, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Quaternion<T>>, 3_usize>

pub fn mul(
    self,
    right: Unit<Quaternion<T>>
) -> <Translation<T, 3_usize> as Mul<Unit<Quaternion<T>>>>::Output
[src]

impl<T> Mul<Rotation<T, 3_usize>> for Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Quaternion<T>>

pub fn mul(
    self,
    rhs: Rotation<T, 3_usize>
) -> <Unit<Quaternion<T>> as Mul<Rotation<T, 3_usize>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Unit<Quaternion<T>>> for &'a Translation<T, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Quaternion<T>>, 3_usize>

pub fn mul(
    self,
    right: &'b Unit<Quaternion<T>>
) -> <&'a Translation<T, 3_usize> as Mul<&'b Unit<Quaternion<T>>>>::Output
[src]

impl<'b, T, C, R, const D: usize> Mul<&'b Transform<T, C, D>> for Isometry<T, R, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    R: SubsetOf<Matrix<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <DefaultAllocator as Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>>::Buffer>>,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: &'b Transform<T, C, D>
) -> <Isometry<T, R, D> as Mul<&'b Transform<T, C, D>>>::Output
[src]

impl<'a, 'b, T, R, const D: usize> Mul<&'b Isometry<T, R, D>> for &'a Similarity<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, R, D>

pub fn mul(
    self,
    rhs: &'b Isometry<T, R, D>
) -> <&'a Similarity<T, R, D> as Mul<&'b Isometry<T, R, D>>>::Output
[src]

impl<'a, T, R, const D: usize> Mul<Point<T, D>> for &'a Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Point<T, D>

pub fn mul(
    self,
    right: Point<T, D>
) -> <&'a Isometry<T, R, D> as Mul<Point<T, D>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Quaternion<T>> for &'a Quaternion<T> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Quaternion<T>

pub fn mul(
    self,
    rhs: &'b Quaternion<T>
) -> <&'a Quaternion<T> as Mul<&'b Quaternion<T>>>::Output
[src]

impl<'b, R, C, S> Mul<&'b Matrix<usize, R, C, S>> for usize where
    C: Dim,
    R: Dim,
    S: Storage<usize, R, C>,
    DefaultAllocator: Allocator<usize, R, C>, 
[src]

type Output = Matrix<usize, R, C, <DefaultAllocator as Allocator<usize, R, C>>::Buffer>

pub fn mul(
    self,
    rhs: &'b Matrix<usize, R, C, S>
) -> <usize as Mul<&'b Matrix<usize, R, C, S>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b DualQuaternion<T>> for &'a DualQuaternion<T> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = DualQuaternion<T>

pub fn mul(
    self,
    rhs: &'b DualQuaternion<T>
) -> <&'a DualQuaternion<T> as Mul<&'b DualQuaternion<T>>>::Output
[src]

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

type Output = DualQuaternion<f32>

pub fn mul(
    self,
    right: DualQuaternion<f32>
) -> <f32 as Mul<DualQuaternion<f32>>>::Output
[src]

impl<'a, T, S> Mul<Unit<Matrix<T, Const<2_usize>, Const<1_usize>, S>>> for &'a Unit<Complex<T>> where
    T: SimdRealField,
    S: Storage<T, Const<2_usize>, Const<1_usize>>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, ArrayStorage<T, 2_usize, 1_usize>>>

pub fn mul(
    self,
    rhs: Unit<Matrix<T, Const<2_usize>, Const<1_usize>, S>>
) -> <&'a Unit<Complex<T>> as Mul<Unit<Matrix<T, Const<2_usize>, Const<1_usize>, S>>>>::Output
[src]

impl<'b, T, C, R, const D: usize> Mul<&'b Transform<T, C, D>> for Similarity<T, R, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    R: SubsetOf<Matrix<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <DefaultAllocator as Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>>::Buffer>>,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: &'b Transform<T, C, D>
) -> <Similarity<T, R, D> as Mul<&'b Transform<T, C, D>>>::Output
[src]

impl<'a, T> Mul<Unit<Complex<T>>> for &'a Isometry<T, Unit<Complex<T>>, 2_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Complex<T>>, 2_usize>

pub fn mul(
    self,
    rhs: Unit<Complex<T>>
) -> <&'a Isometry<T, Unit<Complex<T>>, 2_usize> as Mul<Unit<Complex<T>>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Isometry<T, Unit<Quaternion<T>>, 3_usize>> for &'a Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<DualQuaternion<T>>

pub fn mul(
    self,
    rhs: &'b Isometry<T, Unit<Quaternion<T>>, 3_usize>
) -> <&'a Unit<DualQuaternion<T>> as Mul<&'b Isometry<T, Unit<Quaternion<T>>, 3_usize>>>::Output
[src]

impl<'b, T> Mul<&'b Unit<Complex<T>>> for Similarity<T, Unit<Complex<T>>, 2_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, Unit<Complex<T>>, 2_usize>

pub fn mul(
    self,
    rhs: &'b Unit<Complex<T>>
) -> <Similarity<T, Unit<Complex<T>>, 2_usize> as Mul<&'b Unit<Complex<T>>>>::Output
[src]

impl<'a, 'b, T, SA, const D2: usize, const R1: usize, const C1: usize> Mul<&'b Point<T, D2>> for &'a Matrix<T, Const<R1>, Const<C1>, SA> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T>,
    SA: Storage<T, Const<R1>, Const<C1>>,
    ShapeConstraint: AreMultipliable<Const<R1>, Const<C1>, Const<D2>, Const<1_usize>>, 
[src]

type Output = Point<T, R1>

pub fn mul(
    self,
    right: &'b Point<T, D2>
) -> <&'a Matrix<T, Const<R1>, Const<C1>, SA> as Mul<&'b Point<T, D2>>>::Output
[src]

impl<R, C, S> Mul<Matrix<f32, R, C, S>> for f32 where
    C: Dim,
    R: Dim,
    S: Storage<f32, R, C>,
    DefaultAllocator: Allocator<f32, R, C>, 
[src]

type Output = Matrix<f32, R, C, <DefaultAllocator as Allocator<f32, R, C>>::Buffer>

pub fn mul(
    self,
    rhs: Matrix<f32, R, C, S>
) -> <f32 as Mul<Matrix<f32, R, C, S>>>::Output
[src]

impl<T, SA, const D2: usize, const R1: usize, const C1: usize> Mul<Point<T, D2>> for Matrix<T, Const<R1>, Const<C1>, SA> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T>,
    SA: Storage<T, Const<R1>, Const<C1>>,
    ShapeConstraint: AreMultipliable<Const<R1>, Const<C1>, Const<D2>, Const<1_usize>>, 
[src]

type Output = Point<T, R1>

pub fn mul(
    self,
    right: Point<T, D2>
) -> <Matrix<T, Const<R1>, Const<C1>, SA> as Mul<Point<T, D2>>>::Output
[src]

impl<'a, 'b, T, const D: usize> Mul<&'b Rotation<T, D>> for &'a Translation<T, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Rotation<T, D>, D>

pub fn mul(
    self,
    right: &'b Rotation<T, D>
) -> <&'a Translation<T, D> as Mul<&'b Rotation<T, D>>>::Output
[src]

impl<'b, T, const D: usize> Mul<&'b Rotation<T, D>> for Isometry<T, Rotation<T, D>, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Rotation<T, D>, D>

pub fn mul(
    self,
    rhs: &'b Rotation<T, D>
) -> <Isometry<T, Rotation<T, D>, D> as Mul<&'b Rotation<T, D>>>::Output
[src]

impl<'a, T, SA, const D2: usize, const R1: usize, const C1: usize> Mul<Point<T, D2>> for &'a Matrix<T, Const<R1>, Const<C1>, SA> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T>,
    SA: Storage<T, Const<R1>, Const<C1>>,
    ShapeConstraint: AreMultipliable<Const<R1>, Const<C1>, Const<D2>, Const<1_usize>>, 
[src]

type Output = Point<T, R1>

pub fn mul(
    self,
    right: Point<T, D2>
) -> <&'a Matrix<T, Const<R1>, Const<C1>, SA> as Mul<Point<T, D2>>>::Output
[src]

impl<'a, 'b, T, R, const D: usize> Mul<&'b Isometry<T, R, D>> for &'a Translation<T, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, R, D>

pub fn mul(
    self,
    right: &'b Isometry<T, R, D>
) -> <&'a Translation<T, D> as Mul<&'b Isometry<T, R, D>>>::Output
[src]

impl<T> Mul<Unit<Quaternion<T>>> for Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<DualQuaternion<T>>

pub fn mul(
    self,
    rhs: Unit<Quaternion<T>>
) -> <Unit<DualQuaternion<T>> as Mul<Unit<Quaternion<T>>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b DualQuaternion<T>> for &'a Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = DualQuaternion<T>

pub fn mul(
    self,
    rhs: &'b DualQuaternion<T>
) -> <&'a Unit<DualQuaternion<T>> as Mul<&'b DualQuaternion<T>>>::Output
[src]

impl<'b, T, SB> Mul<&'b Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>> for Unit<DualQuaternion<T>> where
    T: SimdRealField,
    SB: Storage<T, Const<{_: usize}>, Const<1_usize>>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Matrix<T, Const<{_: usize}>, Const<1_usize>, ArrayStorage<T, 3_usize, 1_usize>>

pub fn mul(
    self,
    rhs: &'b Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>
) -> <Unit<DualQuaternion<T>> as Mul<&'b Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>>::Output
[src]

impl<'b, T, C, const D: usize> Mul<&'b Transform<T, C, D>> for Rotation<T, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: &'b Transform<T, C, D>
) -> <Rotation<T, D> as Mul<&'b Transform<T, C, D>>>::Output
[src]

impl<'b, T> Mul<&'b Unit<DualQuaternion<T>>> for Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<DualQuaternion<T>>

pub fn mul(
    self,
    rhs: &'b Unit<DualQuaternion<T>>
) -> <Unit<Quaternion<T>> as Mul<&'b Unit<DualQuaternion<T>>>>::Output
[src]

impl<'a, 'b, T, const D: usize> Mul<&'b Rotation<T, D>> for &'a Isometry<T, Rotation<T, D>, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Rotation<T, D>, D>

pub fn mul(
    self,
    rhs: &'b Rotation<T, D>
) -> <&'a Isometry<T, Rotation<T, D>, D> as Mul<&'b Rotation<T, D>>>::Output
[src]

impl<'b, T, R, const D: usize> Mul<&'b Point<T, D>> for Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Point<T, D>

pub fn mul(
    self,
    right: &'b Point<T, D>
) -> <Isometry<T, R, D> as Mul<&'b Point<T, D>>>::Output
[src]

impl<'b, T, R, const D: usize> Mul<&'b Isometry<T, R, D>> for Similarity<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, R, D>

pub fn mul(
    self,
    rhs: &'b Isometry<T, R, D>
) -> <Similarity<T, R, D> as Mul<&'b Isometry<T, R, D>>>::Output
[src]

impl<'a, T> Mul<Unit<Quaternion<T>>> for &'a Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<DualQuaternion<T>>

pub fn mul(
    self,
    rhs: Unit<Quaternion<T>>
) -> <&'a Unit<DualQuaternion<T>> as Mul<Unit<Quaternion<T>>>>::Output
[src]

impl<'a, T, R, const D: usize> Mul<Isometry<T, R, D>> for &'a Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, R, D>

pub fn mul(
    self,
    rhs: Isometry<T, R, D>
) -> <&'a Isometry<T, R, D> as Mul<Isometry<T, R, D>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Point<T, 3_usize>> for &'a Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Point<T, 3_usize>

pub fn mul(
    self,
    rhs: &'b Point<T, 3_usize>
) -> <&'a Unit<Quaternion<T>> as Mul<&'b Point<T, 3_usize>>>::Output
[src]

impl<'a, T, C, const D: usize> Mul<Transform<T, C, D>> for &'a Rotation<T, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: Transform<T, C, D>
) -> <&'a Rotation<T, D> as Mul<Transform<T, C, D>>>::Output
[src]

impl<const D: usize> Mul<Point<usize, D>> for usize[src]

type Output = Point<usize, D>

pub fn mul(
    self,
    right: Point<usize, D>
) -> <usize as Mul<Point<usize, D>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Point<T, 2_usize>> for &'a Unit<Complex<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Point<T, 2_usize>

pub fn mul(
    self,
    rhs: &'b Point<T, 2_usize>
) -> <&'a Unit<Complex<T>> as Mul<&'b Point<T, 2_usize>>>::Output
[src]

impl<'a, T, R, const D: usize> Mul<Unit<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>> for &'a Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>

pub fn mul(
    self,
    right: Unit<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>
) -> <&'a Isometry<T, R, D> as Mul<Unit<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>>>::Output
[src]

impl<'b> Mul<&'b Quaternion<f32>> for f32[src]

type Output = Quaternion<f32>

pub fn mul(
    self,
    right: &'b Quaternion<f32>
) -> <f32 as Mul<&'b Quaternion<f32>>>::Output
[src]

impl<T, R, const D: usize> Mul<Point<T, D>> for Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Point<T, D>

pub fn mul(
    self,
    right: Point<T, D>
) -> <Isometry<T, R, D> as Mul<Point<T, D>>>::Output
[src]

impl<'a, T, C, const D: usize> Mul<Translation<T, D>> for &'a Transform<T, C, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: Translation<T, D>
) -> <&'a Transform<T, C, D> as Mul<Translation<T, D>>>::Output
[src]

impl<T> Mul<T> for DualQuaternion<T> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = DualQuaternion<T>

pub fn mul(self, n: T) -> <DualQuaternion<T> as Mul<T>>::Output[src]

impl<T, C, const D: usize> Mul<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>> for Transform<T, C, D> where
    C: TCategory,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>

pub fn mul(
    self,
    rhs: Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>
) -> <Transform<T, C, D> as Mul<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>>::Output
[src]

impl<'b, T> Mul<&'b Unit<Quaternion<T>>> for Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<DualQuaternion<T>>

pub fn mul(
    self,
    rhs: &'b Unit<Quaternion<T>>
) -> <Unit<DualQuaternion<T>> as Mul<&'b Unit<Quaternion<T>>>>::Output
[src]

impl<'a, T> Mul<Unit<Complex<T>>> for &'a Translation<T, 2_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Complex<T>>, 2_usize>

pub fn mul(
    self,
    right: Unit<Complex<T>>
) -> <&'a Translation<T, 2_usize> as Mul<Unit<Complex<T>>>>::Output
[src]

impl<'a, T, SB> Mul<Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>> for &'a Unit<Quaternion<T>> where
    T: SimdRealField,
    SB: Storage<T, Const<3_usize>, Const<1_usize>>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, ArrayStorage<T, 3_usize, 1_usize>>>

pub fn mul(
    self,
    rhs: Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>
) -> <&'a Unit<Quaternion<T>> as Mul<Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>>>::Output
[src]

impl<'b, T, const D: usize> Mul<&'b Translation<T, D>> for Rotation<T, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Rotation<T, D>, D>

pub fn mul(
    self,
    right: &'b Translation<T, D>
) -> <Rotation<T, D> as Mul<&'b Translation<T, D>>>::Output
[src]

impl<'a, T, const D: usize> Mul<Rotation<T, D>> for &'a Translation<T, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Rotation<T, D>, D>

pub fn mul(
    self,
    right: Rotation<T, D>
) -> <&'a Translation<T, D> as Mul<Rotation<T, D>>>::Output
[src]

impl<'b, T, C, const D: usize> Mul<&'b Transform<T, C, D>> for Translation<T, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: &'b Transform<T, C, D>
) -> <Translation<T, D> as Mul<&'b Transform<T, C, D>>>::Output
[src]

impl<'a, T> Mul<Unit<DualQuaternion<T>>> for &'a DualQuaternion<T> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = DualQuaternion<T>

pub fn mul(
    self,
    rhs: Unit<DualQuaternion<T>>
) -> <&'a DualQuaternion<T> as Mul<Unit<DualQuaternion<T>>>>::Output
[src]

impl<'b, T, R, const D: usize> Mul<&'b Similarity<T, R, D>> for Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, R, D>

pub fn mul(
    self,
    rhs: &'b Similarity<T, R, D>
) -> <Isometry<T, R, D> as Mul<&'b Similarity<T, R, D>>>::Output
[src]

impl<'a, T> Mul<Unit<Quaternion<T>>> for &'a Translation<T, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Quaternion<T>>, 3_usize>

pub fn mul(
    self,
    right: Unit<Quaternion<T>>
) -> <&'a Translation<T, 3_usize> as Mul<Unit<Quaternion<T>>>>::Output
[src]

impl<'a, T, CA, CB, const D: usize> Mul<Transform<T, CB, D>> for &'a Transform<T, CA, D> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    CA: TCategoryMul<CB>,
    CB: TCategory,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <CA as TCategoryMul<CB>>::Representative, D>

pub fn mul(
    self,
    rhs: Transform<T, CB, D>
) -> <&'a Transform<T, CA, D> as Mul<Transform<T, CB, D>>>::Output
[src]

impl<T, C, const D: usize> Mul<Point<T, D>> for Transform<T, C, D> where
    C: TCategory,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Point<T, D>

pub fn mul(
    self,
    rhs: Point<T, D>
) -> <Transform<T, C, D> as Mul<Point<T, D>>>::Output
[src]

impl<T> Mul<Unit<Quaternion<T>>> for Similarity<T, Unit<Quaternion<T>>, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, Unit<Quaternion<T>>, 3_usize>

pub fn mul(
    self,
    rhs: Unit<Quaternion<T>>
) -> <Similarity<T, Unit<Quaternion<T>>, 3_usize> as Mul<Unit<Quaternion<T>>>>::Output
[src]

impl<'b, const D: usize> Mul<&'b Point<f32, D>> for f32[src]

type Output = Point<f32, D>

pub fn mul(
    self,
    right: &'b Point<f32, D>
) -> <f32 as Mul<&'b Point<f32, D>>>::Output
[src]

impl<const D: usize> Mul<Point<u8, D>> for u8[src]

type Output = Point<u8, D>

pub fn mul(self, right: Point<u8, D>) -> <u8 as Mul<Point<u8, D>>>::Output[src]

impl<'b, T, SB> Mul<&'b Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>> for Unit<Quaternion<T>> where
    T: SimdRealField,
    SB: Storage<T, Const<3_usize>, Const<1_usize>>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Matrix<T, Const<{_: usize}>, Const<1_usize>, ArrayStorage<T, 3_usize, 1_usize>>

pub fn mul(
    self,
    rhs: &'b Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>
) -> <Unit<Quaternion<T>> as Mul<&'b Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>>::Output
[src]

impl<'b, T> Mul<&'b Unit<Quaternion<T>>> for Isometry<T, Unit<Quaternion<T>>, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Quaternion<T>>, 3_usize>

pub fn mul(
    self,
    rhs: &'b Unit<Quaternion<T>>
) -> <Isometry<T, Unit<Quaternion<T>>, 3_usize> as Mul<&'b Unit<Quaternion<T>>>>::Output
[src]

impl<'b, T> Mul<&'b Unit<DualQuaternion<T>>> for Isometry<T, Unit<Quaternion<T>>, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<DualQuaternion<T>>

pub fn mul(
    self,
    rhs: &'b Unit<DualQuaternion<T>>
) -> <Isometry<T, Unit<Quaternion<T>>, 3_usize> as Mul<&'b Unit<DualQuaternion<T>>>>::Output
[src]

impl<'b, T> Mul<&'b Point<T, 3_usize>> for Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Point<T, 3_usize>

pub fn mul(
    self,
    rhs: &'b Point<T, 3_usize>
) -> <Unit<DualQuaternion<T>> as Mul<&'b Point<T, 3_usize>>>::Output
[src]

impl<'b, T, const D: usize> Mul<&'b Rotation<T, D>> for Similarity<T, Rotation<T, D>, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, Rotation<T, D>, D>

pub fn mul(
    self,
    rhs: &'b Rotation<T, D>
) -> <Similarity<T, Rotation<T, D>, D> as Mul<&'b Rotation<T, D>>>::Output
[src]

impl<'b, T, C> Mul<&'b Transform<T, C, 3_usize>> for Unit<Quaternion<T>> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, 3_usize>

pub fn mul(
    self,
    rhs: &'b Transform<T, C, 3_usize>
) -> <Unit<Quaternion<T>> as Mul<&'b Transform<T, C, 3_usize>>>::Output
[src]

impl<'a, T> Mul<Unit<DualQuaternion<T>>> for &'a Translation<T, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<DualQuaternion<T>>

pub fn mul(
    self,
    rhs: Unit<DualQuaternion<T>>
) -> <&'a Translation<T, 3_usize> as Mul<Unit<DualQuaternion<T>>>>::Output
[src]

impl<'b, T, SB> Mul<&'b Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>> for Unit<Quaternion<T>> where
    T: SimdRealField,
    SB: Storage<T, Const<3_usize>, Const<1_usize>>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, ArrayStorage<T, 3_usize, 1_usize>>>

pub fn mul(
    self,
    rhs: &'b Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>
) -> <Unit<Quaternion<T>> as Mul<&'b Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>>>::Output
[src]

impl<'a, 'b, T> Mul<&'a Unit<DualQuaternion<T>>> for &'b Translation<T, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<DualQuaternion<T>>

pub fn mul(
    self,
    rhs: &'a Unit<DualQuaternion<T>>
) -> <&'b Translation<T, 3_usize> as Mul<&'a Unit<DualQuaternion<T>>>>::Output
[src]

impl<'b, T> Mul<&'b Rotation<T, 2_usize>> for Unit<Complex<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Complex<T>>

pub fn mul(
    self,
    rhs: &'b Rotation<T, 2_usize>
) -> <Unit<Complex<T>> as Mul<&'b Rotation<T, 2_usize>>>::Output
[src]

impl<'b, T, const D: usize> Mul<&'b Isometry<T, Rotation<T, D>, D>> for Rotation<T, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Rotation<T, D>, D>

pub fn mul(
    self,
    right: &'b Isometry<T, Rotation<T, D>, D>
) -> <Rotation<T, D> as Mul<&'b Isometry<T, Rotation<T, D>, D>>>::Output
[src]

impl<'b, T, S, const D: usize> Mul<&'b Unit<Matrix<T, Const<D>, Const<1_usize>, S>>> for Rotation<T, D> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T>,
    S: Storage<T, Const<D>, Const<1_usize>>,
    ShapeConstraint: AreMultipliable<Const<D>, Const<D>, Const<D>, Const<1_usize>>, 
[src]

type Output = Unit<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>

pub fn mul(
    self,
    right: &'b Unit<Matrix<T, Const<D>, Const<1_usize>, S>>
) -> <Rotation<T, D> as Mul<&'b Unit<Matrix<T, Const<D>, Const<1_usize>, S>>>>::Output
[src]

impl<'a, T> Mul<Unit<Quaternion<T>>> for &'a Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Quaternion<T>>

pub fn mul(
    self,
    rhs: Unit<Quaternion<T>>
) -> <&'a Unit<Quaternion<T>> as Mul<Unit<Quaternion<T>>>>::Output
[src]

impl<'a, T, R1, C1, R2, C2, SA, SB> Mul<Matrix<T, R2, C2, SB>> for &'a Matrix<T, R1, C1, SA> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T>,
    R2: Dim,
    C2: Dim,
    R1: Dim,
    C1: Dim,
    SB: Storage<T, R2, C2>,
    SA: Storage<T, R1, C1>,
    DefaultAllocator: Allocator<T, R1, C2>,
    ShapeConstraint: AreMultipliable<R1, C1, R2, C2>, 
[src]

type Output = Matrix<T, R1, C2, <DefaultAllocator as Allocator<T, R1, C2>>::Buffer>

pub fn mul(
    self,
    rhs: Matrix<T, R2, C2, SB>
) -> <&'a Matrix<T, R1, C1, SA> as Mul<Matrix<T, R2, C2, SB>>>::Output
[src]

impl<'a, T> Mul<Unit<Complex<T>>> for &'a Unit<Complex<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Complex<T>>

pub fn mul(
    self,
    rhs: Unit<Complex<T>>
) -> <&'a Unit<Complex<T>> as Mul<Unit<Complex<T>>>>::Output
[src]

impl<'b, T> Mul<&'b Point<T, 2_usize>> for Unit<Complex<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Point<T, 2_usize>

pub fn mul(
    self,
    rhs: &'b Point<T, 2_usize>
) -> <Unit<Complex<T>> as Mul<&'b Point<T, 2_usize>>>::Output
[src]

impl<'b, T, C, const D: usize> Mul<&'b Translation<T, D>> for Transform<T, C, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: &'b Translation<T, D>
) -> <Transform<T, C, D> as Mul<&'b Translation<T, D>>>::Output
[src]

impl<'b, T> Mul<&'b Unit<Quaternion<T>>> for Rotation<T, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Quaternion<T>>

pub fn mul(
    self,
    rhs: &'b Unit<Quaternion<T>>
) -> <Rotation<T, 3_usize> as Mul<&'b Unit<Quaternion<T>>>>::Output
[src]

impl<'b, T, R, const D: usize> Mul<&'b Translation<T, D>> for Similarity<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, R, D>

pub fn mul(
    self,
    right: &'b Translation<T, D>
) -> <Similarity<T, R, D> as Mul<&'b Translation<T, D>>>::Output
[src]

impl<'a, T, SB> Mul<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>> for &'a Unit<DualQuaternion<T>> where
    T: SimdRealField,
    SB: Storage<T, Const<{_: usize}>, Const<1_usize>>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Matrix<T, Const<{_: usize}>, Const<1_usize>, ArrayStorage<T, 3_usize, 1_usize>>

pub fn mul(
    self,
    rhs: Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>
) -> <&'a Unit<DualQuaternion<T>> as Mul<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>>::Output
[src]

impl<T> Mul<Isometry<T, Unit<Complex<T>>, 2_usize>> for Unit<Complex<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Complex<T>>, 2_usize>

pub fn mul(
    self,
    rhs: Isometry<T, Unit<Complex<T>>, 2_usize>
) -> <Unit<Complex<T>> as Mul<Isometry<T, Unit<Complex<T>>, 2_usize>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Unit<Complex<T>>> for &'a Isometry<T, Unit<Complex<T>>, 2_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Complex<T>>, 2_usize>

pub fn mul(
    self,
    rhs: &'b Unit<Complex<T>>
) -> <&'a Isometry<T, Unit<Complex<T>>, 2_usize> as Mul<&'b Unit<Complex<T>>>>::Output
[src]

impl<'b, R, C, S> Mul<&'b Matrix<u32, R, C, S>> for u32 where
    C: Dim,
    R: Dim,
    S: Storage<u32, R, C>,
    DefaultAllocator: Allocator<u32, R, C>, 
[src]

type Output = Matrix<u32, R, C, <DefaultAllocator as Allocator<u32, R, C>>::Buffer>

pub fn mul(
    self,
    rhs: &'b Matrix<u32, R, C, S>
) -> <u32 as Mul<&'b Matrix<u32, R, C, S>>>::Output
[src]

impl<'a, T, const D: usize> Mul<Rotation<T, D>> for &'a Rotation<T, D> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T>, 
[src]

type Output = Rotation<T, D>

pub fn mul(
    self,
    right: Rotation<T, D>
) -> <&'a Rotation<T, D> as Mul<Rotation<T, D>>>::Output
[src]

impl<T> Mul<Point<T, 2_usize>> for Unit<Complex<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Point<T, 2_usize>

pub fn mul(
    self,
    rhs: Point<T, 2_usize>
) -> <Unit<Complex<T>> as Mul<Point<T, 2_usize>>>::Output
[src]

impl<'b, T, R, const D: usize> Mul<&'b Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>> for Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>

pub fn mul(
    self,
    right: &'b Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>
) -> <Isometry<T, R, D> as Mul<&'b Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>>::Output
[src]

impl<'b, T, CA, CB, const D: usize> Mul<&'b Transform<T, CB, D>> for Transform<T, CA, D> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    CA: TCategoryMul<CB>,
    CB: TCategory,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <CA as TCategoryMul<CB>>::Representative, D>

pub fn mul(
    self,
    rhs: &'b Transform<T, CB, D>
) -> <Transform<T, CA, D> as Mul<&'b Transform<T, CB, D>>>::Output
[src]

impl<T, S, const D: usize> Mul<Unit<Matrix<T, Const<D>, Const<1_usize>, S>>> for Rotation<T, D> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T>,
    S: Storage<T, Const<D>, Const<1_usize>>,
    ShapeConstraint: AreMultipliable<Const<D>, Const<D>, Const<D>, Const<1_usize>>, 
[src]

type Output = Unit<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>

pub fn mul(
    self,
    right: Unit<Matrix<T, Const<D>, Const<1_usize>, S>>
) -> <Rotation<T, D> as Mul<Unit<Matrix<T, Const<D>, Const<1_usize>, S>>>>::Output
[src]

impl<'b, const D: usize> Mul<&'b Point<u16, D>> for u16[src]

type Output = Point<u16, D>

pub fn mul(
    self,
    right: &'b Point<u16, D>
) -> <u16 as Mul<&'b Point<u16, D>>>::Output
[src]

impl<'b, R, C, S> Mul<&'b Matrix<u64, R, C, S>> for u64 where
    C: Dim,
    R: Dim,
    S: Storage<u64, R, C>,
    DefaultAllocator: Allocator<u64, R, C>, 
[src]

type Output = Matrix<u64, R, C, <DefaultAllocator as Allocator<u64, R, C>>::Buffer>

pub fn mul(
    self,
    rhs: &'b Matrix<u64, R, C, S>
) -> <u64 as Mul<&'b Matrix<u64, R, C, S>>>::Output
[src]

impl<T, C, const D: usize> Mul<Rotation<T, D>> for Transform<T, C, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: Rotation<T, D>
) -> <Transform<T, C, D> as Mul<Rotation<T, D>>>::Output
[src]

impl<'a, T> Mul<Unit<Complex<T>>> for &'a Rotation<T, 2_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Complex<T>>

pub fn mul(
    self,
    rhs: Unit<Complex<T>>
) -> <&'a Rotation<T, 2_usize> as Mul<Unit<Complex<T>>>>::Output
[src]

impl<'a, T, const D: usize> Mul<Rotation<T, D>> for &'a Similarity<T, Rotation<T, D>, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, Rotation<T, D>, D>

pub fn mul(
    self,
    rhs: Rotation<T, D>
) -> <&'a Similarity<T, Rotation<T, D>, D> as Mul<Rotation<T, D>>>::Output
[src]

impl<R, C, S> Mul<Matrix<isize, R, C, S>> for isize where
    C: Dim,
    R: Dim,
    S: Storage<isize, R, C>,
    DefaultAllocator: Allocator<isize, R, C>, 
[src]

type Output = Matrix<isize, R, C, <DefaultAllocator as Allocator<isize, R, C>>::Buffer>

pub fn mul(
    self,
    rhs: Matrix<isize, R, C, S>
) -> <isize as Mul<Matrix<isize, R, C, S>>>::Output
[src]

impl<'a, 'b, T, R, const D: usize> Mul<&'b Point<T, D>> for &'a Similarity<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Point<T, D>

pub fn mul(
    self,
    right: &'b Point<T, D>
) -> <&'a Similarity<T, R, D> as Mul<&'b Point<T, D>>>::Output
[src]

impl<'b, T, R2, C2, SB, const D1: usize> Mul<&'b Matrix<T, R2, C2, SB>> for Rotation<T, D1> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T>,
    R2: Dim,
    C2: Dim,
    SB: Storage<T, R2, C2>,
    DefaultAllocator: Allocator<T, Const<D1>, C2>,
    ShapeConstraint: AreMultipliable<Const<D1>, Const<D1>, R2, C2>, 
[src]

type Output = Matrix<T, Const<D1>, C2, <DefaultAllocator as Allocator<T, Const<D1>, C2>>::Buffer>

pub fn mul(
    self,
    right: &'b Matrix<T, R2, C2, SB>
) -> <Rotation<T, D1> as Mul<&'b Matrix<T, R2, C2, SB>>>::Output
[src]

impl<'b, R, C, S> Mul<&'b Matrix<f64, R, C, S>> for f64 where
    C: Dim,
    R: Dim,
    S: Storage<f64, R, C>,
    DefaultAllocator: Allocator<f64, R, C>, 
[src]

type Output = Matrix<f64, R, C, <DefaultAllocator as Allocator<f64, R, C>>::Buffer>

pub fn mul(
    self,
    rhs: &'b Matrix<f64, R, C, S>
) -> <f64 as Mul<&'b Matrix<f64, R, C, S>>>::Output
[src]

impl<T> Mul<Isometry<T, Unit<Quaternion<T>>, 3_usize>> for Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<DualQuaternion<T>>

pub fn mul(
    self,
    rhs: Isometry<T, Unit<Quaternion<T>>, 3_usize>
) -> <Unit<DualQuaternion<T>> as Mul<Isometry<T, Unit<Quaternion<T>>, 3_usize>>>::Output
[src]

impl<T, R, const D: usize> Mul<Similarity<T, R, D>> for Translation<T, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, R, D>

pub fn mul(
    self,
    right: Similarity<T, R, D>
) -> <Translation<T, D> as Mul<Similarity<T, R, D>>>::Output
[src]

impl<const D: usize> Mul<Point<i16, D>> for i16[src]

type Output = Point<i16, D>

pub fn mul(self, right: Point<i16, D>) -> <i16 as Mul<Point<i16, D>>>::Output[src]

impl<T, R, C, S> Mul<T> for Matrix<T, R, C, S> where
    C: Dim,
    T: Scalar + ClosedMul<T>,
    R: Dim,
    S: Storage<T, R, C>,
    DefaultAllocator: Allocator<T, R, C>, 
[src]

type Output = Matrix<T, R, C, <DefaultAllocator as Allocator<T, R, C>>::Buffer>

pub fn mul(self, rhs: T) -> <Matrix<T, R, C, S> as Mul<T>>::Output[src]

impl<'a, T, const D: usize> Mul<Rotation<T, D>> for &'a Isometry<T, Rotation<T, D>, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Rotation<T, D>, D>

pub fn mul(
    self,
    rhs: Rotation<T, D>
) -> <&'a Isometry<T, Rotation<T, D>, D> as Mul<Rotation<T, D>>>::Output
[src]

impl<'b, const D: usize> Mul<&'b Point<usize, D>> for usize[src]

type Output = Point<usize, D>

pub fn mul(
    self,
    right: &'b Point<usize, D>
) -> <usize as Mul<&'b Point<usize, D>>>::Output
[src]

impl<const D: usize> Mul<Point<f32, D>> for f32[src]

type Output = Point<f32, D>

pub fn mul(self, right: Point<f32, D>) -> <f32 as Mul<Point<f32, D>>>::Output[src]

impl<'a, 'b, T, R, const D: usize> Mul<&'b Point<T, D>> for &'a Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Point<T, D>

pub fn mul(
    self,
    right: &'b Point<T, D>
) -> <&'a Isometry<T, R, D> as Mul<&'b Point<T, D>>>::Output
[src]

impl<'b, T, const D: usize> Mul<&'b Rotation<T, D>> for Rotation<T, D> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T>, 
[src]

type Output = Rotation<T, D>

pub fn mul(
    self,
    right: &'b Rotation<T, D>
) -> <Rotation<T, D> as Mul<&'b Rotation<T, D>>>::Output
[src]

impl<'b, T> Mul<&'b Unit<DualQuaternion<T>>> for Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<DualQuaternion<T>>

pub fn mul(
    self,
    rhs: &'b Unit<DualQuaternion<T>>
) -> <Unit<DualQuaternion<T>> as Mul<&'b Unit<DualQuaternion<T>>>>::Output
[src]

impl<'b, T, C, const D: usize> Mul<&'b Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>> for Transform<T, C, D> where
    C: TCategory,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>

pub fn mul(
    self,
    rhs: &'b Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>
) -> <Transform<T, C, D> as Mul<&'b Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>>::Output
[src]

impl<'a, T, const D: usize> Mul<Translation<T, D>> for &'a Rotation<T, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Rotation<T, D>, D>

pub fn mul(
    self,
    right: Translation<T, D>
) -> <&'a Rotation<T, D> as Mul<Translation<T, D>>>::Output
[src]

impl<T, R, const D: usize> Mul<Isometry<T, R, D>> for Similarity<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, R, D>

pub fn mul(
    self,
    rhs: Isometry<T, R, D>
) -> <Similarity<T, R, D> as Mul<Isometry<T, R, D>>>::Output
[src]

impl<'a, T, C, const D: usize> Mul<Transform<T, C, D>> for &'a Translation<T, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: Transform<T, C, D>
) -> <&'a Translation<T, D> as Mul<Transform<T, C, D>>>::Output
[src]

impl<T, S> Mul<Matrix<T, Const<2_usize>, Const<1_usize>, S>> for Unit<Complex<T>> where
    T: SimdRealField,
    S: Storage<T, Const<2_usize>, Const<1_usize>>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Matrix<T, Const<{_: usize}>, Const<1_usize>, ArrayStorage<T, 2_usize, 1_usize>>

pub fn mul(
    self,
    rhs: Matrix<T, Const<2_usize>, Const<1_usize>, S>
) -> <Unit<Complex<T>> as Mul<Matrix<T, Const<2_usize>, Const<1_usize>, S>>>::Output
[src]

impl<'a, 'b, T, SB> Mul<&'b Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>> for &'a Unit<Quaternion<T>> where
    T: SimdRealField,
    SB: Storage<T, Const<3_usize>, Const<1_usize>>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, ArrayStorage<T, 3_usize, 1_usize>>>

pub fn mul(
    self,
    rhs: &'b Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>
) -> <&'a Unit<Quaternion<T>> as Mul<&'b Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>>>::Output
[src]

impl<T> Mul<Unit<DualQuaternion<T>>> for Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<DualQuaternion<T>>

pub fn mul(
    self,
    rhs: Unit<DualQuaternion<T>>
) -> <Unit<Quaternion<T>> as Mul<Unit<DualQuaternion<T>>>>::Output
[src]

impl<T, const D: usize> Mul<Rotation<T, D>> for Isometry<T, Rotation<T, D>, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Rotation<T, D>, D>

pub fn mul(
    self,
    rhs: Rotation<T, D>
) -> <Isometry<T, Rotation<T, D>, D> as Mul<Rotation<T, D>>>::Output
[src]

impl<T> Mul<Similarity<T, Unit<Quaternion<T>>, 3_usize>> for Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, Unit<Quaternion<T>>, 3_usize>

pub fn mul(
    self,
    right: Similarity<T, Unit<Quaternion<T>>, 3_usize>
) -> <Unit<Quaternion<T>> as Mul<Similarity<T, Unit<Quaternion<T>>, 3_usize>>>::Output
[src]

impl<T, const D: usize> Mul<Rotation<T, D>> for Translation<T, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Rotation<T, D>, D>

pub fn mul(
    self,
    right: Rotation<T, D>
) -> <Translation<T, D> as Mul<Rotation<T, D>>>::Output
[src]

impl<'b, T> Mul<&'b DualQuaternion<T>> for DualQuaternion<T> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = DualQuaternion<T>

pub fn mul(
    self,
    rhs: &'b DualQuaternion<T>
) -> <DualQuaternion<T> as Mul<&'b DualQuaternion<T>>>::Output
[src]

impl<'a, T> Mul<Translation<T, 2_usize>> for &'a Unit<Complex<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Complex<T>>, 2_usize>

pub fn mul(
    self,
    rhs: Translation<T, 2_usize>
) -> <&'a Unit<Complex<T>> as Mul<Translation<T, 2_usize>>>::Output
[src]

impl<T> Mul<Quaternion<T>> for Quaternion<T> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Quaternion<T>

pub fn mul(
    self,
    rhs: Quaternion<T>
) -> <Quaternion<T> as Mul<Quaternion<T>>>::Output
[src]

impl<'a, T> Mul<Translation<T, 3_usize>> for &'a Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Quaternion<T>>, 3_usize>

pub fn mul(
    self,
    right: Translation<T, 3_usize>
) -> <&'a Unit<Quaternion<T>> as Mul<Translation<T, 3_usize>>>::Output
[src]

impl<'b, T> Mul<&'b Unit<Complex<T>>> for Rotation<T, 2_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Complex<T>>

pub fn mul(
    self,
    rhs: &'b Unit<Complex<T>>
) -> <Rotation<T, 2_usize> as Mul<&'b Unit<Complex<T>>>>::Output
[src]

impl<T> Mul<Translation<T, 3_usize>> for Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Quaternion<T>>, 3_usize>

pub fn mul(
    self,
    right: Translation<T, 3_usize>
) -> <Unit<Quaternion<T>> as Mul<Translation<T, 3_usize>>>::Output
[src]

impl<'b, R, C, S> Mul<&'b Matrix<i16, R, C, S>> for i16 where
    C: Dim,
    R: Dim,
    S: Storage<i16, R, C>,
    DefaultAllocator: Allocator<i16, R, C>, 
[src]

type Output = Matrix<i16, R, C, <DefaultAllocator as Allocator<i16, R, C>>::Buffer>

pub fn mul(
    self,
    rhs: &'b Matrix<i16, R, C, S>
) -> <i16 as Mul<&'b Matrix<i16, R, C, S>>>::Output
[src]

impl<'b, T, C, const D: usize> Mul<&'b Rotation<T, D>> for Transform<T, C, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: &'b Rotation<T, D>
) -> <Transform<T, C, D> as Mul<&'b Rotation<T, D>>>::Output
[src]

impl<T, R, const D: usize> Mul<Translation<T, D>> for Similarity<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, R, D>

pub fn mul(
    self,
    right: Translation<T, D>
) -> <Similarity<T, R, D> as Mul<Translation<T, D>>>::Output
[src]

impl<T> Mul<Unit<DualQuaternion<T>>> for DualQuaternion<T> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = DualQuaternion<T>

pub fn mul(
    self,
    rhs: Unit<DualQuaternion<T>>
) -> <DualQuaternion<T> as Mul<Unit<DualQuaternion<T>>>>::Output
[src]

impl<T, R, const D: usize> Mul<Isometry<T, R, D>> for Translation<T, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, R, D>

pub fn mul(
    self,
    right: Isometry<T, R, D>
) -> <Translation<T, D> as Mul<Isometry<T, R, D>>>::Output
[src]

impl<'a, T> Mul<Translation<T, 3_usize>> for &'a Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<DualQuaternion<T>>

pub fn mul(
    self,
    rhs: Translation<T, 3_usize>
) -> <&'a Unit<DualQuaternion<T>> as Mul<Translation<T, 3_usize>>>::Output
[src]

impl<'a, 'b, T, C, const D: usize> Mul<&'b Transform<T, C, D>> for &'a Rotation<T, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: &'b Transform<T, C, D>
) -> <&'a Rotation<T, D> as Mul<&'b Transform<T, C, D>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Rotation<T, 3_usize>> for &'a Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Quaternion<T>>

pub fn mul(
    self,
    rhs: &'b Rotation<T, 3_usize>
) -> <&'a Unit<Quaternion<T>> as Mul<&'b Rotation<T, 3_usize>>>::Output
[src]

impl<'b, T, R, const D: usize> Mul<&'b Translation<T, D>> for Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, R, D>

pub fn mul(
    self,
    right: &'b Translation<T, D>
) -> <Isometry<T, R, D> as Mul<&'b Translation<T, D>>>::Output
[src]

impl<T, C> Mul<Unit<Quaternion<T>>> for Transform<T, C, 3_usize> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, 3_usize>

pub fn mul(
    self,
    rhs: Unit<Quaternion<T>>
) -> <Transform<T, C, 3_usize> as Mul<Unit<Quaternion<T>>>>::Output
[src]

impl<'b, T> Mul<&'b Unit<Complex<T>>> for Unit<Complex<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Complex<T>>

pub fn mul(
    self,
    rhs: &'b Unit<Complex<T>>
) -> <Unit<Complex<T>> as Mul<&'b Unit<Complex<T>>>>::Output
[src]

impl<const D: usize> Mul<Point<u16, D>> for u16[src]

type Output = Point<u16, D>

pub fn mul(self, right: Point<u16, D>) -> <u16 as Mul<Point<u16, D>>>::Output[src]

impl<T> Mul<Unit<DualQuaternion<T>>> for Isometry<T, Unit<Quaternion<T>>, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<DualQuaternion<T>>

pub fn mul(
    self,
    rhs: Unit<DualQuaternion<T>>
) -> <Isometry<T, Unit<Quaternion<T>>, 3_usize> as Mul<Unit<DualQuaternion<T>>>>::Output
[src]

impl<'b, const D: usize> Mul<&'b Point<i64, D>> for i64[src]

type Output = Point<i64, D>

pub fn mul(
    self,
    right: &'b Point<i64, D>
) -> <i64 as Mul<&'b Point<i64, D>>>::Output
[src]

impl<'a, 'b, T, C, const D: usize> Mul<&'b Point<T, D>> for &'a Transform<T, C, D> where
    C: TCategory,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Point<T, D>

pub fn mul(
    self,
    rhs: &'b Point<T, D>
) -> <&'a Transform<T, C, D> as Mul<&'b Point<T, D>>>::Output
[src]

impl<T> Mul<Point<T, 3_usize>> for Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Point<T, 3_usize>

pub fn mul(
    self,
    rhs: Point<T, 3_usize>
) -> <Unit<DualQuaternion<T>> as Mul<Point<T, 3_usize>>>::Output
[src]

impl<'a, T, const D: usize> Mul<Similarity<T, Rotation<T, D>, D>> for &'a Rotation<T, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, Rotation<T, D>, D>

pub fn mul(
    self,
    right: Similarity<T, Rotation<T, D>, D>
) -> <&'a Rotation<T, D> as Mul<Similarity<T, Rotation<T, D>, D>>>::Output
[src]

impl<'a, T> Mul<Quaternion<T>> for &'a Quaternion<T> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Quaternion<T>

pub fn mul(
    self,
    rhs: Quaternion<T>
) -> <&'a Quaternion<T> as Mul<Quaternion<T>>>::Output
[src]

impl<'a, T> Mul<T> for &'a DualQuaternion<T> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = DualQuaternion<T>

pub fn mul(self, n: T) -> <&'a DualQuaternion<T> as Mul<T>>::Output[src]

impl<T> Mul<Similarity<T, Unit<Complex<T>>, 2_usize>> for Unit<Complex<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, Unit<Complex<T>>, 2_usize>

pub fn mul(
    self,
    rhs: Similarity<T, Unit<Complex<T>>, 2_usize>
) -> <Unit<Complex<T>> as Mul<Similarity<T, Unit<Complex<T>>, 2_usize>>>::Output
[src]

impl<'b, R, C, S> Mul<&'b Matrix<f32, R, C, S>> for f32 where
    C: Dim,
    R: Dim,
    S: Storage<f32, R, C>,
    DefaultAllocator: Allocator<f32, R, C>, 
[src]

type Output = Matrix<f32, R, C, <DefaultAllocator as Allocator<f32, R, C>>::Buffer>

pub fn mul(
    self,
    rhs: &'b Matrix<f32, R, C, S>
) -> <f32 as Mul<&'b Matrix<f32, R, C, S>>>::Output
[src]

impl<'a, T> Mul<Point<T, 2_usize>> for &'a Unit<Complex<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Point<T, 2_usize>

pub fn mul(
    self,
    rhs: Point<T, 2_usize>
) -> <&'a Unit<Complex<T>> as Mul<Point<T, 2_usize>>>::Output
[src]

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

type Output = Quaternion<f64>

pub fn mul(
    self,
    right: Quaternion<f64>
) -> <f64 as Mul<Quaternion<f64>>>::Output
[src]

impl<'a, 'b, T, R, const D: usize> Mul<&'b Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>> for &'a Similarity<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>

pub fn mul(
    self,
    right: &'b Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>
) -> <&'a Similarity<T, R, D> as Mul<&'b Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>>::Output
[src]

impl<'a, T, const D: usize> Mul<Point<T, D>> for &'a Rotation<T, D> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T>,
    ShapeConstraint: AreMultipliable<Const<D>, Const<D>, Const<D>, Const<1_usize>>, 
[src]

type Output = Point<T, D>

pub fn mul(
    self,
    right: Point<T, D>
) -> <&'a Rotation<T, D> as Mul<Point<T, D>>>::Output
[src]

impl<R, C, S> Mul<Matrix<i64, R, C, S>> for i64 where
    C: Dim,
    R: Dim,
    S: Storage<i64, R, C>,
    DefaultAllocator: Allocator<i64, R, C>, 
[src]

type Output = Matrix<i64, R, C, <DefaultAllocator as Allocator<i64, R, C>>::Buffer>

pub fn mul(
    self,
    rhs: Matrix<i64, R, C, S>
) -> <i64 as Mul<Matrix<i64, R, C, S>>>::Output
[src]

impl<'b, T, R1, C1, SA, const D2: usize> Mul<&'b Rotation<T, D2>> for Matrix<T, R1, C1, SA> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T>,
    R1: Dim,
    C1: Dim,
    SA: Storage<T, R1, C1>,
    DefaultAllocator: Allocator<T, R1, Const<D2>>,
    ShapeConstraint: AreMultipliable<R1, C1, Const<D2>, Const<D2>>, 
[src]

type Output = Matrix<T, R1, Const<D2>, <DefaultAllocator as Allocator<T, R1, Const<D2>>>::Buffer>

pub fn mul(
    self,
    right: &'b Rotation<T, D2>
) -> <Matrix<T, R1, C1, SA> as Mul<&'b Rotation<T, D2>>>::Output
[src]

impl<T> Mul<Unit<Complex<T>>> for Unit<Complex<T>> where
    T: SimdRealField, 
[src]

type Output = Unit<Complex<T>>

pub fn mul(self, rhs: Unit<Complex<T>>) -> Unit<Complex<T>>[src]

impl<'a, 'b, T, const D: usize> Mul<&'b Point<T, D>> for &'a Rotation<T, D> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T>,
    ShapeConstraint: AreMultipliable<Const<D>, Const<D>, Const<D>, Const<1_usize>>, 
[src]

type Output = Point<T, D>

pub fn mul(
    self,
    right: &'b Point<T, D>
) -> <&'a Rotation<T, D> as Mul<&'b Point<T, D>>>::Output
[src]

impl<'a, T, C, const D: usize> Mul<Point<T, D>> for &'a Transform<T, C, D> where
    C: TCategory,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Point<T, D>

pub fn mul(
    self,
    rhs: Point<T, D>
) -> <&'a Transform<T, C, D> as Mul<Point<T, D>>>::Output
[src]

impl<'b, T, const D: usize> Mul<&'b Point<T, D>> for Translation<T, D> where
    T: ClosedAdd<T> + Scalar,
    ShapeConstraint: SameNumberOfRows<Const<D>, Const<D>>,
    ShapeConstraint: SameNumberOfColumns<Const<1_usize>, Const<1_usize>>,
    <ShapeConstraint as SameNumberOfRows<Const<D>, Const<D>>>::Representative == Const<D>,
    <ShapeConstraint as SameNumberOfColumns<Const<1_usize>, Const<1_usize>>>::Representative == Const<1_usize>, 
[src]

type Output = Point<T, D>

pub fn mul(
    self,
    right: &'b Point<T, D>
) -> <Translation<T, D> as Mul<&'b Point<T, D>>>::Output
[src]

impl<T, const D: usize> Mul<Translation<T, D>> for Translation<T, D> where
    T: ClosedAdd<T> + Scalar,
    ShapeConstraint: SameNumberOfRows<Const<D>, Const<D>>,
    ShapeConstraint: SameNumberOfColumns<Const<1_usize>, Const<1_usize>>,
    <ShapeConstraint as SameNumberOfRows<Const<D>, Const<D>>>::Representative == Const<D>,
    <ShapeConstraint as SameNumberOfColumns<Const<1_usize>, Const<1_usize>>>::Representative == Const<1_usize>, 
[src]

type Output = Translation<T, D>

pub fn mul(
    self,
    right: Translation<T, D>
) -> <Translation<T, D> as Mul<Translation<T, D>>>::Output
[src]

impl<'b, T> Mul<&'b Quaternion<T>> for Quaternion<T> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Quaternion<T>

pub fn mul(
    self,
    rhs: &'b Quaternion<T>
) -> <Quaternion<T> as Mul<&'b Quaternion<T>>>::Output
[src]

impl<'a, T, R, const D: usize> Mul<Isometry<T, R, D>> for &'a Similarity<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, R, D>

pub fn mul(
    self,
    rhs: Isometry<T, R, D>
) -> <&'a Similarity<T, R, D> as Mul<Isometry<T, R, D>>>::Output
[src]

impl<'a, 'b, T, const D: usize> Mul<&'b Translation<T, D>> for &'a Translation<T, D> where
    T: ClosedAdd<T> + Scalar,
    ShapeConstraint: SameNumberOfRows<Const<D>, Const<D>>,
    ShapeConstraint: SameNumberOfColumns<Const<1_usize>, Const<1_usize>>,
    <ShapeConstraint as SameNumberOfRows<Const<D>, Const<D>>>::Representative == Const<D>,
    <ShapeConstraint as SameNumberOfColumns<Const<1_usize>, Const<1_usize>>>::Representative == Const<1_usize>, 
[src]

type Output = Translation<T, D>

pub fn mul(
    self,
    right: &'b Translation<T, D>
) -> <&'a Translation<T, D> as Mul<&'b Translation<T, D>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Unit<Quaternion<T>>> for &'a Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Quaternion<T>>

pub fn mul(
    self,
    rhs: &'b Unit<Quaternion<T>>
) -> <&'a Unit<Quaternion<T>> as Mul<&'b Unit<Quaternion<T>>>>::Output
[src]

impl<T, R, const D: usize> Mul<Similarity<T, R, D>> for Similarity<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, R, D>

pub fn mul(
    self,
    rhs: Similarity<T, R, D>
) -> <Similarity<T, R, D> as Mul<Similarity<T, R, D>>>::Output
[src]

impl<'a, T, S> Mul<Matrix<T, Const<2_usize>, Const<1_usize>, S>> for &'a Unit<Complex<T>> where
    T: SimdRealField,
    S: Storage<T, Const<2_usize>, Const<1_usize>>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Matrix<T, Const<{_: usize}>, Const<1_usize>, ArrayStorage<T, 2_usize, 1_usize>>

pub fn mul(
    self,
    rhs: Matrix<T, Const<2_usize>, Const<1_usize>, S>
) -> <&'a Unit<Complex<T>> as Mul<Matrix<T, Const<2_usize>, Const<1_usize>, S>>>::Output
[src]

impl<'b, T, const D: usize> Mul<&'b Translation<T, D>> for Translation<T, D> where
    T: ClosedAdd<T> + Scalar,
    ShapeConstraint: SameNumberOfRows<Const<D>, Const<D>>,
    ShapeConstraint: SameNumberOfColumns<Const<1_usize>, Const<1_usize>>,
    <ShapeConstraint as SameNumberOfRows<Const<D>, Const<D>>>::Representative == Const<D>,
    <ShapeConstraint as SameNumberOfColumns<Const<1_usize>, Const<1_usize>>>::Representative == Const<1_usize>, 
[src]

type Output = Translation<T, D>

pub fn mul(
    self,
    right: &'b Translation<T, D>
) -> <Translation<T, D> as Mul<&'b Translation<T, D>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Unit<Complex<T>>> for &'a Unit<Complex<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Complex<T>>

pub fn mul(
    self,
    rhs: &'b Unit<Complex<T>>
) -> <&'a Unit<Complex<T>> as Mul<&'b Unit<Complex<T>>>>::Output
[src]

impl<const D: usize> Mul<Point<u32, D>> for u32[src]

type Output = Point<u32, D>

pub fn mul(self, right: Point<u32, D>) -> <u32 as Mul<Point<u32, D>>>::Output[src]

impl<'b> Mul<&'b DualQuaternion<f64>> for f64[src]

type Output = DualQuaternion<f64>

pub fn mul(
    self,
    right: &'b DualQuaternion<f64>
) -> <f64 as Mul<&'b DualQuaternion<f64>>>::Output
[src]

impl<T> Mul<Isometry<T, Unit<Quaternion<T>>, 3_usize>> for Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Quaternion<T>>, 3_usize>

pub fn mul(
    self,
    right: Isometry<T, Unit<Quaternion<T>>, 3_usize>
) -> <Unit<Quaternion<T>> as Mul<Isometry<T, Unit<Quaternion<T>>, 3_usize>>>::Output
[src]

impl<'b, const D: usize> Mul<&'b Point<u8, D>> for u8[src]

type Output = Point<u8, D>

pub fn mul(
    self,
    right: &'b Point<u8, D>
) -> <u8 as Mul<&'b Point<u8, D>>>::Output
[src]

impl<T> Mul<DualQuaternion<T>> for DualQuaternion<T> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = DualQuaternion<T>

pub fn mul(
    self,
    rhs: DualQuaternion<T>
) -> <DualQuaternion<T> as Mul<DualQuaternion<T>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Similarity<T, Unit<Quaternion<T>>, 3_usize>> for &'a Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, Unit<Quaternion<T>>, 3_usize>

pub fn mul(
    self,
    right: &'b Similarity<T, Unit<Quaternion<T>>, 3_usize>
) -> <&'a Unit<Quaternion<T>> as Mul<&'b Similarity<T, Unit<Quaternion<T>>, 3_usize>>>::Output
[src]

impl<'a, T, C, R, const D: usize> Mul<Transform<T, C, D>> for &'a Isometry<T, R, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    R: SubsetOf<Matrix<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <DefaultAllocator as Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>>::Buffer>>,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: Transform<T, C, D>
) -> <&'a Isometry<T, R, D> as Mul<Transform<T, C, D>>>::Output
[src]

impl<'b, R, C, S> Mul<&'b Matrix<u16, R, C, S>> for u16 where
    C: Dim,
    R: Dim,
    S: Storage<u16, R, C>,
    DefaultAllocator: Allocator<u16, R, C>, 
[src]

type Output = Matrix<u16, R, C, <DefaultAllocator as Allocator<u16, R, C>>::Buffer>

pub fn mul(
    self,
    rhs: &'b Matrix<u16, R, C, S>
) -> <u16 as Mul<&'b Matrix<u16, R, C, S>>>::Output
[src]

impl<T> Mul<DualQuaternion<T>> for Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = DualQuaternion<T>

pub fn mul(
    self,
    rhs: DualQuaternion<T>
) -> <Unit<DualQuaternion<T>> as Mul<DualQuaternion<T>>>::Output
[src]

impl<'a, 'b, T, R, const D: usize> Mul<&'b Similarity<T, R, D>> for &'a Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, R, D>

pub fn mul(
    self,
    rhs: &'b Similarity<T, R, D>
) -> <&'a Isometry<T, R, D> as Mul<&'b Similarity<T, R, D>>>::Output
[src]

impl<'b, T> Mul<&'b Similarity<T, Unit<Complex<T>>, 2_usize>> for Unit<Complex<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Similarity<T, Unit<Complex<T>>, 2_usize>

pub fn mul(
    self,
    rhs: &'b Similarity<T, Unit<Complex<T>>, 2_usize>
) -> <Unit<Complex<T>> as Mul<&'b Similarity<T, Unit<Complex<T>>, 2_usize>>>::Output
[src]

impl<'a, T> Mul<Unit<DualQuaternion<T>>> for &'a Isometry<T, Unit<Quaternion<T>>, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<DualQuaternion<T>>

pub fn mul(
    self,
    rhs: Unit<DualQuaternion<T>>
) -> <&'a Isometry<T, Unit<Quaternion<T>>, 3_usize> as Mul<Unit<DualQuaternion<T>>>>::Output
[src]

impl<'b> Mul<&'b Quaternion<f64>> for f64[src]

type Output = Quaternion<f64>

pub fn mul(
    self,
    right: &'b Quaternion<f64>
) -> <f64 as Mul<&'b Quaternion<f64>>>::Output
[src]

impl<'b, R, C, S> Mul<&'b Matrix<u8, R, C, S>> for u8 where
    C: Dim,
    R: Dim,
    S: Storage<u8, R, C>,
    DefaultAllocator: Allocator<u8, R, C>, 
[src]

type Output = Matrix<u8, R, C, <DefaultAllocator as Allocator<u8, R, C>>::Buffer>

pub fn mul(
    self,
    rhs: &'b Matrix<u8, R, C, S>
) -> <u8 as Mul<&'b Matrix<u8, R, C, S>>>::Output
[src]

impl<'a, 'b, T, R, const D: usize> Mul<&'b Translation<T, D>> for &'a Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, R, D>

pub fn mul(
    self,
    right: &'b Translation<T, D>
) -> <&'a Isometry<T, R, D> as Mul<&'b Translation<T, D>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Unit<Quaternion<T>>> for &'a Isometry<T, Unit<Quaternion<T>>, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Quaternion<T>>, 3_usize>

pub fn mul(
    self,
    rhs: &'b Unit<Quaternion<T>>
) -> <&'a Isometry<T, Unit<Quaternion<T>>, 3_usize> as Mul<&'b Unit<Quaternion<T>>>>::Output
[src]

impl<'b, T> Mul<&'b Unit<Quaternion<T>>> for Translation<T, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Quaternion<T>>, 3_usize>

pub fn mul(
    self,
    right: &'b Unit<Quaternion<T>>
) -> <Translation<T, 3_usize> as Mul<&'b Unit<Quaternion<T>>>>::Output
[src]

impl<'b, T> Mul<&'b Isometry<T, Unit<Complex<T>>, 2_usize>> for Unit<Complex<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Complex<T>>, 2_usize>

pub fn mul(
    self,
    rhs: &'b Isometry<T, Unit<Complex<T>>, 2_usize>
) -> <Unit<Complex<T>> as Mul<&'b Isometry<T, Unit<Complex<T>>, 2_usize>>>::Output
[src]

impl<'a, T, const D: usize> Mul<Translation<T, D>> for &'a Translation<T, D> where
    T: ClosedAdd<T> + Scalar,
    ShapeConstraint: SameNumberOfRows<Const<D>, Const<D>>,
    ShapeConstraint: SameNumberOfColumns<Const<1_usize>, Const<1_usize>>,
    <ShapeConstraint as SameNumberOfRows<Const<D>, Const<D>>>::Representative == Const<D>,
    <ShapeConstraint as SameNumberOfColumns<Const<1_usize>, Const<1_usize>>>::Representative == Const<1_usize>, 
[src]

type Output = Translation<T, D>

pub fn mul(
    self,
    right: Translation<T, D>
) -> <&'a Translation<T, D> as Mul<Translation<T, D>>>::Output
[src]

impl<'b, const D: usize> Mul<&'b Point<i8, D>> for i8[src]

type Output = Point<i8, D>

pub fn mul(
    self,
    right: &'b Point<i8, D>
) -> <i8 as Mul<&'b Point<i8, D>>>::Output
[src]

impl<'b, T, R, const D: usize> Mul<&'b Isometry<T, R, D>> for Translation<T, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, R, D>

pub fn mul(
    self,
    right: &'b Isometry<T, R, D>
) -> <Translation<T, D> as Mul<&'b Isometry<T, R, D>>>::Output
[src]

impl<T, CA, CB, const D: usize> Mul<Transform<T, CB, D>> for Transform<T, CA, D> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    CA: TCategoryMul<CB>,
    CB: TCategory,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <CA as TCategoryMul<CB>>::Representative, D>

pub fn mul(
    self,
    rhs: Transform<T, CB, D>
) -> <Transform<T, CA, D> as Mul<Transform<T, CB, D>>>::Output
[src]

impl<'a, T, C> Mul<Transform<T, C, 3_usize>> for &'a Unit<Quaternion<T>> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, 3_usize>

pub fn mul(
    self,
    rhs: Transform<T, C, 3_usize>
) -> <&'a Unit<Quaternion<T>> as Mul<Transform<T, C, 3_usize>>>::Output
[src]

impl<T, SB> Mul<Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>> for Unit<DualQuaternion<T>> where
    T: SimdRealField,
    SB: Storage<T, Const<{_: usize}>, Const<1_usize>>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, ArrayStorage<T, 3_usize, 1_usize>>>

pub fn mul(
    self,
    rhs: Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>
) -> <Unit<DualQuaternion<T>> as Mul<Unit<Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>>>>::Output
[src]

impl<'a, 'b, T, R1, C1, R2, C2, SA, SB> Mul<&'b Matrix<T, R2, C2, SB>> for &'a Matrix<T, R1, C1, SA> where
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T>,
    R2: Dim,
    C2: Dim,
    R1: Dim,
    C1: Dim,
    SB: Storage<T, R2, C2>,
    SA: Storage<T, R1, C1>,
    DefaultAllocator: Allocator<T, R1, C2>,
    ShapeConstraint: AreMultipliable<R1, C1, R2, C2>, 
[src]

type Output = Matrix<T, R1, C2, <DefaultAllocator as Allocator<T, R1, C2>>::Buffer>

pub fn mul(
    self,
    rhs: &'b Matrix<T, R2, C2, SB>
) -> <&'a Matrix<T, R1, C1, SA> as Mul<&'b Matrix<T, R2, C2, SB>>>::Output
[src]

impl<R, C, S> Mul<Matrix<usize, R, C, S>> for usize where
    C: Dim,
    R: Dim,
    S: Storage<usize, R, C>,
    DefaultAllocator: Allocator<usize, R, C>, 
[src]

type Output = Matrix<usize, R, C, <DefaultAllocator as Allocator<usize, R, C>>::Buffer>

pub fn mul(
    self,
    rhs: Matrix<usize, R, C, S>
) -> <usize as Mul<Matrix<usize, R, C, S>>>::Output
[src]

impl<const D: usize> Mul<Point<i64, D>> for i64[src]

type Output = Point<i64, D>

pub fn mul(self, right: Point<i64, D>) -> <i64 as Mul<Point<i64, D>>>::Output[src]

impl<R, C, S> Mul<Matrix<u64, R, C, S>> for u64 where
    C: Dim,
    R: Dim,
    S: Storage<u64, R, C>,
    DefaultAllocator: Allocator<u64, R, C>, 
[src]

type Output = Matrix<u64, R, C, <DefaultAllocator as Allocator<u64, R, C>>::Buffer>

pub fn mul(
    self,
    rhs: Matrix<u64, R, C, S>
) -> <u64 as Mul<Matrix<u64, R, C, S>>>::Output
[src]

impl<T, C, const D: usize> Mul<Translation<T, D>> for Transform<T, C, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

pub fn mul(
    self,
    rhs: Translation<T, D>
) -> <Transform<T, C, D> as Mul<Translation<T, D>>>::Output
[src]

impl<'a, T, R, const D: usize> Mul<Point<T, D>> for &'a Similarity<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Point<T, D>

pub fn mul(
    self,
    right: Point<T, D>
) -> <&'a Similarity<T, R, D> as Mul<Point<T, D>>>::Output
[src]

impl<'a, T, R, const D: usize> Mul<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>> for &'a Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>

pub fn mul(
    self,
    right: Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>
) -> <&'a Isometry<T, R, D> as Mul<Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>>>::Output
[src]

impl<'b, R, C, S> Mul<&'b Matrix<i64, R, C, S>> for i64 where
    C: Dim,
    R: Dim,
    S: Storage<i64, R, C>,
    DefaultAllocator: Allocator<i64, R, C>, 
[src]

type Output = Matrix<i64, R, C, <DefaultAllocator as Allocator<i64, R, C>>::Buffer>

pub fn mul(
    self,
    rhs: &'b Matrix<i64, R, C, S>
) -> <i64 as Mul<&'b Matrix<i64, R, C, S>>>::Output
[src]

impl<T> Mul<Translation<T, 2_usize>> for Unit<Complex<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Complex<T>>, 2_usize>

pub fn mul(
    self,
    rhs: Translation<T, 2_usize>
) -> <Unit<Complex<T>> as Mul<Translation<T, 2_usize>>>::Output
[src]

impl<'a, 'b, T> Mul<&'b Translation<T, 2_usize>> for &'a Unit<Complex<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField, 
[src]

type Output = Isometry<T, Unit<Complex<T>>, 2_usize>

pub fn mul(
    self,
    rhs: &'b Translation<T, 2_usize>
) -> <&'a Unit<Complex<T>> as Mul<&'b Translation<T, 2_usize>>>::Output
[src]

impl Mul<AutoSimd<[f64; 8]>> for AutoSimd<[f64; 8]>

type Output = AutoSimd<[f64; 8]>

pub fn mul(self, rhs: AutoSimd<[f64; 8]>) -> AutoSimd<[f64; 8]>

impl Mul<AutoSimd<[f32; 4]>> for AutoSimd<[f32; 4]>

type Output = AutoSimd<[f32; 4]>

pub fn mul(self, rhs: AutoSimd<[f32; 4]>) -> AutoSimd<[f32; 4]>

impl Mul<AutoSimd<[usize; 8]>> for AutoSimd<[usize; 8]>

type Output = AutoSimd<[usize; 8]>

pub fn mul(self, rhs: AutoSimd<[usize; 8]>) -> AutoSimd<[usize; 8]>

impl Mul<AutoSimd<[i64; 8]>> for AutoSimd<[i64; 8]>

type Output = AutoSimd<[i64; 8]>

pub fn mul(self, rhs: AutoSimd<[i64; 8]>) -> AutoSimd<[i64; 8]>

impl Mul<AutoSimd<[u128; 4]>> for AutoSimd<[u128; 4]>

type Output = AutoSimd<[u128; 4]>

pub fn mul(self, rhs: AutoSimd<[u128; 4]>) -> AutoSimd<[u128; 4]>

impl Mul<AutoSimd<[i16; 2]>> for AutoSimd<[i16; 2]>

type Output = AutoSimd<[i16; 2]>

pub fn mul(self, rhs: AutoSimd<[i16; 2]>) -> AutoSimd<[i16; 2]>

impl Mul<AutoSimd<[i128; 2]>> for AutoSimd<[i128; 2]>

type Output = AutoSimd<[i128; 2]>

pub fn mul(self, rhs: AutoSimd<[i128; 2]>) -> AutoSimd<[i128; 2]>

impl Mul<AutoSimd<[u32; 2]>> for AutoSimd<[u32; 2]>

type Output = AutoSimd<[u32; 2]>

pub fn mul(self, rhs: AutoSimd<[u32; 2]>) -> AutoSimd<[u32; 2]>

impl Mul<AutoSimd<[i32; 8]>> for AutoSimd<[i32; 8]>

type Output = AutoSimd<[i32; 8]>

pub fn mul(self, rhs: AutoSimd<[i32; 8]>) -> AutoSimd<[i32; 8]>

impl Mul<AutoSimd<[u16; 2]>> for AutoSimd<[u16; 2]>

type Output = AutoSimd<[u16; 2]>

pub fn mul(self, rhs: AutoSimd<[u16; 2]>) -> AutoSimd<[u16; 2]>

impl Mul<AutoSimd<[isize; 8]>> for AutoSimd<[isize; 8]>

type Output = AutoSimd<[isize; 8]>

pub fn mul(self, rhs: AutoSimd<[isize; 8]>) -> AutoSimd<[isize; 8]>

impl Mul<AutoSimd<[usize; 2]>> for AutoSimd<[usize; 2]>

type Output = AutoSimd<[usize; 2]>

pub fn mul(self, rhs: AutoSimd<[usize; 2]>) -> AutoSimd<[usize; 2]>

impl Mul<AutoSimd<[i8; 32]>> for AutoSimd<[i8; 32]>

type Output = AutoSimd<[i8; 32]>

pub fn mul(self, rhs: AutoSimd<[i8; 32]>) -> AutoSimd<[i8; 32]>

impl Mul<AutoSimd<[u64; 4]>> for AutoSimd<[u64; 4]>

type Output = AutoSimd<[u64; 4]>

pub fn mul(self, rhs: AutoSimd<[u64; 4]>) -> AutoSimd<[u64; 4]>

impl Mul<AutoSimd<[u8; 2]>> for AutoSimd<[u8; 2]>

type Output = AutoSimd<[u8; 2]>

pub fn mul(self, rhs: AutoSimd<[u8; 2]>) -> AutoSimd<[u8; 2]>

impl Mul<AutoSimd<[u8; 32]>> for AutoSimd<[u8; 32]>

type Output = AutoSimd<[u8; 32]>

pub fn mul(self, rhs: AutoSimd<[u8; 32]>) -> AutoSimd<[u8; 32]>

impl Mul<AutoSimd<[u8; 4]>> for AutoSimd<[u8; 4]>

type Output = AutoSimd<[u8; 4]>

pub fn mul(self, rhs: AutoSimd<[u8; 4]>) -> AutoSimd<[u8; 4]>

impl Mul<AutoSimd<[f64; 4]>> for AutoSimd<[f64; 4]>

type Output = AutoSimd<[f64; 4]>

pub fn mul(self, rhs: AutoSimd<[f64; 4]>) -> AutoSimd<[f64; 4]>

impl Mul<AutoSimd<[u16; 8]>> for AutoSimd<[u16; 8]>

type Output = AutoSimd<[u16; 8]>

pub fn mul(self, rhs: AutoSimd<[u16; 8]>) -> AutoSimd<[u16; 8]>

impl Mul<AutoSimd<[i8; 16]>> for AutoSimd<[i8; 16]>

type Output = AutoSimd<[i8; 16]>

pub fn mul(self, rhs: AutoSimd<[i8; 16]>) -> AutoSimd<[i8; 16]>

impl Mul<AutoSimd<[i128; 1]>> for AutoSimd<[i128; 1]>

type Output = AutoSimd<[i128; 1]>

pub fn mul(self, rhs: AutoSimd<[i128; 1]>) -> AutoSimd<[i128; 1]>

impl Mul<AutoSimd<[u128; 2]>> for AutoSimd<[u128; 2]>

type Output = AutoSimd<[u128; 2]>

pub fn mul(self, rhs: AutoSimd<[u128; 2]>) -> AutoSimd<[u128; 2]>

impl Mul<AutoSimd<[i16; 8]>> for AutoSimd<[i16; 8]>

type Output = AutoSimd<[i16; 8]>

pub fn mul(self, rhs: AutoSimd<[i16; 8]>) -> AutoSimd<[i16; 8]>

impl Mul<AutoSimd<[u8; 16]>> for AutoSimd<[u8; 16]>

type Output = AutoSimd<[u8; 16]>

pub fn mul(self, rhs: AutoSimd<[u8; 16]>) -> AutoSimd<[u8; 16]>

impl Mul<AutoSimd<[f32; 2]>> for AutoSimd<[f32; 2]>

type Output = AutoSimd<[f32; 2]>

pub fn mul(self, rhs: AutoSimd<[f32; 2]>) -> AutoSimd<[f32; 2]>

impl Mul<AutoSimd<[i8; 8]>> for AutoSimd<[i8; 8]>

type Output = AutoSimd<[i8; 8]>

pub fn mul(self, rhs: AutoSimd<[i8; 8]>) -> AutoSimd<[i8; 8]>

impl Mul<AutoSimd<[i8; 2]>> for AutoSimd<[i8; 2]>

type Output = AutoSimd<[i8; 2]>

pub fn mul(self, rhs: AutoSimd<[i8; 2]>) -> AutoSimd<[i8; 2]>

impl Mul<AutoSimd<[i16; 16]>> for AutoSimd<[i16; 16]>

type Output = AutoSimd<[i16; 16]>

pub fn mul(self, rhs: AutoSimd<[i16; 16]>) -> AutoSimd<[i16; 16]>

impl Mul<AutoSimd<[u128; 1]>> for AutoSimd<[u128; 1]>

type Output = AutoSimd<[u128; 1]>

pub fn mul(self, rhs: AutoSimd<[u128; 1]>) -> AutoSimd<[u128; 1]>

impl Mul<AutoSimd<[u8; 8]>> for AutoSimd<[u8; 8]>

type Output = AutoSimd<[u8; 8]>

pub fn mul(self, rhs: AutoSimd<[u8; 8]>) -> AutoSimd<[u8; 8]>

impl Mul<AutoSimd<[isize; 2]>> for AutoSimd<[isize; 2]>

type Output = AutoSimd<[isize; 2]>

pub fn mul(self, rhs: AutoSimd<[isize; 2]>) -> AutoSimd<[isize; 2]>

impl Mul<AutoSimd<[f64; 2]>> for AutoSimd<[f64; 2]>

type Output = AutoSimd<[f64; 2]>

pub fn mul(self, rhs: AutoSimd<[f64; 2]>) -> AutoSimd<[f64; 2]>

impl Mul<AutoSimd<[usize; 4]>> for AutoSimd<[usize; 4]>

type Output = AutoSimd<[usize; 4]>

pub fn mul(self, rhs: AutoSimd<[usize; 4]>) -> AutoSimd<[usize; 4]>

impl Mul<AutoSimd<[u16; 4]>> for AutoSimd<[u16; 4]>

type Output = AutoSimd<[u16; 4]>

pub fn mul(self, rhs: AutoSimd<[u16; 4]>) -> AutoSimd<[u16; 4]>

impl Mul<AutoSimd<[i8; 4]>> for AutoSimd<[i8; 4]>

type Output = AutoSimd<[i8; 4]>

pub fn mul(self, rhs: AutoSimd<[i8; 4]>) -> AutoSimd<[i8; 4]>

impl Mul<AutoSimd<[i64; 2]>> for AutoSimd<[i64; 2]>

type Output = AutoSimd<[i64; 2]>

pub fn mul(self, rhs: AutoSimd<[i64; 2]>) -> AutoSimd<[i64; 2]>

impl Mul<AutoSimd<[u32; 16]>> for AutoSimd<[u32; 16]>

type Output = AutoSimd<[u32; 16]>

pub fn mul(self, rhs: AutoSimd<[u32; 16]>) -> AutoSimd<[u32; 16]>

impl Mul<AutoSimd<[u64; 2]>> for AutoSimd<[u64; 2]>

type Output = AutoSimd<[u64; 2]>

pub fn mul(self, rhs: AutoSimd<[u64; 2]>) -> AutoSimd<[u64; 2]>

impl Mul<AutoSimd<[f32; 8]>> for AutoSimd<[f32; 8]>

type Output = AutoSimd<[f32; 8]>

pub fn mul(self, rhs: AutoSimd<[f32; 8]>) -> AutoSimd<[f32; 8]>

impl Mul<AutoSimd<[u32; 8]>> for AutoSimd<[u32; 8]>

type Output = AutoSimd<[u32; 8]>

pub fn mul(self, rhs: AutoSimd<[u32; 8]>) -> AutoSimd<[u32; 8]>

impl Mul<AutoSimd<[u64; 8]>> for AutoSimd<[u64; 8]>

type Output = AutoSimd<[u64; 8]>

pub fn mul(self, rhs: AutoSimd<[u64; 8]>) -> AutoSimd<[u64; 8]>

impl Mul<AutoSimd<[f32; 16]>> for AutoSimd<[f32; 16]>

type Output = AutoSimd<[f32; 16]>

pub fn mul(self, rhs: AutoSimd<[f32; 16]>) -> AutoSimd<[f32; 16]>

impl Mul<AutoSimd<[i32; 16]>> for AutoSimd<[i32; 16]>

type Output = AutoSimd<[i32; 16]>

pub fn mul(self, rhs: AutoSimd<[i32; 16]>) -> AutoSimd<[i32; 16]>

impl Mul<AutoSimd<[i16; 4]>> for AutoSimd<[i16; 4]>

type Output = AutoSimd<[i16; 4]>

pub fn mul(self, rhs: AutoSimd<[i16; 4]>) -> AutoSimd<[i16; 4]>

impl Mul<AutoSimd<[i16; 32]>> for AutoSimd<[i16; 32]>

type Output = AutoSimd<[i16; 32]>

pub fn mul(self, rhs: AutoSimd<[i16; 32]>) -> AutoSimd<[i16; 32]>

impl Mul<AutoSimd<[u16; 16]>> for AutoSimd<[u16; 16]>

type Output = AutoSimd<[u16; 16]>

pub fn mul(self, rhs: AutoSimd<[u16; 16]>) -> AutoSimd<[u16; 16]>

impl Mul<AutoSimd<[i64; 4]>> for AutoSimd<[i64; 4]>

type Output = AutoSimd<[i64; 4]>

pub fn mul(self, rhs: AutoSimd<[i64; 4]>) -> AutoSimd<[i64; 4]>

impl Mul<AutoSimd<[u16; 32]>> for AutoSimd<[u16; 32]>

type Output = AutoSimd<[u16; 32]>

pub fn mul(self, rhs: AutoSimd<[u16; 32]>) -> AutoSimd<[u16; 32]>

impl Mul<AutoSimd<[u32; 4]>> for AutoSimd<[u32; 4]>

type Output = AutoSimd<[u32; 4]>

pub fn mul(self, rhs: AutoSimd<[u32; 4]>) -> AutoSimd<[u32; 4]>

impl Mul<AutoSimd<[isize; 4]>> for AutoSimd<[isize; 4]>

type Output = AutoSimd<[isize; 4]>

pub fn mul(self, rhs: AutoSimd<[isize; 4]>) -> AutoSimd<[isize; 4]>

impl Mul<AutoSimd<[i32; 2]>> for AutoSimd<[i32; 2]>

type Output = AutoSimd<[i32; 2]>

pub fn mul(self, rhs: AutoSimd<[i32; 2]>) -> AutoSimd<[i32; 2]>

impl Mul<AutoSimd<[i128; 4]>> for AutoSimd<[i128; 4]>

type Output = AutoSimd<[i128; 4]>

pub fn mul(self, rhs: AutoSimd<[i128; 4]>) -> AutoSimd<[i128; 4]>

impl Mul<AutoSimd<[i32; 4]>> for AutoSimd<[i32; 4]>

type Output = AutoSimd<[i32; 4]>

pub fn mul(self, rhs: AutoSimd<[i32; 4]>) -> AutoSimd<[i32; 4]>

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

type Output = Complex<usize>

pub fn mul(self, other: &Complex<usize>) -> Complex<usize>[src]

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

type Output = Complex<T>

pub fn mul(
    self,
    other: &Complex<T>
) -> <Complex<T> as Mul<&'a Complex<T>>>::Output
[src]

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

type Output = Complex<i32>

pub fn mul(self, other: &Complex<i32>) -> Complex<i32>[src]

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

type Output = Complex<i8>

pub fn mul(self, other: Complex<i8>) -> Complex<i8>[src]

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

type Output = Complex<i8>

pub fn mul(self, other: Complex<i8>) -> <i8 as Mul<Complex<i8>>>::Output[src]

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

type Output = Complex<i8>

pub fn mul(self, other: &Complex<i8>) -> Complex<i8>[src]

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

type Output = Complex<i64>

pub fn mul(self, other: &Complex<i64>) -> Complex<i64>[src]

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

type Output = Complex<isize>

pub fn mul(self, other: Complex<isize>) -> Complex<isize>[src]

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

type Output = Complex<i32>

pub fn mul(self, other: Complex<i32>) -> <i32 as Mul<Complex<i32>>>::Output[src]

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

type Output = Complex<f64>

pub fn mul(self, other: &Complex<f64>) -> Complex<f64>[src]

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

type Output = Complex<T>

pub fn mul(self, other: Complex<T>) -> <Complex<T> as Mul<Complex<T>>>::Output[src]

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

type Output = Complex<T>

pub fn mul(self, other: &T) -> <Complex<T> as Mul<&'a T>>::Output[src]

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

type Output = Complex<usize>

pub fn mul(
    self,
    other: Complex<usize>
) -> <usize as Mul<Complex<usize>>>::Output
[src]

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

type Output = Complex<i128>

pub fn mul(self, other: Complex<i128>) -> <i128 as Mul<Complex<i128>>>::Output[src]

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

type Output = Complex<i64>

pub fn mul(self, other: &Complex<i64>) -> Complex<i64>[src]

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

type Output = Complex<usize>

pub fn mul(self, other: Complex<usize>) -> Complex<usize>[src]

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

type Output = Complex<u64>

pub fn mul(self, other: &Complex<u64>) -> Complex<u64>[src]

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

type Output = Complex<u64>

pub fn mul(self, other: &Complex<u64>) -> Complex<u64>[src]

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

type Output = Complex<u8>

pub fn mul(self, other: Complex<u8>) -> Complex<u8>[src]

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

type Output = Complex<u128>

pub fn mul(self, other: &Complex<u128>) -> Complex<u128>[src]

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

type Output = Complex<i32>

pub fn mul(self, other: &Complex<i32>) -> Complex<i32>[src]

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

type Output = Complex<u16>

pub fn mul(self, other: Complex<u16>) -> Complex<u16>[src]

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

type Output = Complex<f32>

pub fn mul(self, other: &Complex<f32>) -> Complex<f32>[src]

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

type Output = Complex<u64>

pub fn mul(self, other: Complex<u64>) -> Complex<u64>[src]

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

type Output = Complex<i64>

pub fn mul(self, other: Complex<i64>) -> <i64 as Mul<Complex<i64>>>::Output[src]

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

type Output = Complex<i128>

pub fn mul(self, other: &Complex<i128>) -> Complex<i128>[src]

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

type Output = Complex<isize>

pub fn mul(
    self,
    other: Complex<isize>
) -> <isize as Mul<Complex<isize>>>::Output
[src]

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

type Output = Complex<i128>

pub fn mul(self, other: &Complex<i128>) -> Complex<i128>[src]

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

type Output = Complex<i16>

pub fn mul(self, other: &Complex<i16>) -> Complex<i16>[src]

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

type Output = Complex<u128>

pub fn mul(self, other: &Complex<u128>) -> Complex<u128>[src]

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

type Output = Complex<T>

pub fn mul(
    self,
    other: &Complex<T>
) -> <&'a Complex<T> as Mul<&'b Complex<T>>>::Output
[src]

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

type Output = Complex<T>

pub fn mul(
    self,
    other: Complex<T>
) -> <&'a Complex<T> as Mul<Complex<T>>>::Output
[src]

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

type Output = Complex<u16>

pub fn mul(self, other: Complex<u16>) -> <u16 as Mul<Complex<u16>>>::Output[src]

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

type Output = Complex<f32>

pub fn mul(self, other: Complex<f32>) -> Complex<f32>[src]

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

type Output = Complex<T>

pub fn mul(self, other: T) -> <Complex<T> as Mul<T>>::Output[src]

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

type Output = Complex<f64>

pub fn mul(self, other: Complex<f64>) -> Complex<f64>[src]

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

type Output = Complex<u8>

pub fn mul(self, other: Complex<u8>) -> <u8 as Mul<Complex<u8>>>::Output[src]

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

type Output = Complex<T>

pub fn mul(self, other: T) -> <&'a Complex<T> as Mul<T>>::Output[src]

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

type Output = Complex<i128>

pub fn mul(self, other: Complex<i128>) -> Complex<i128>[src]

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

type Output = Complex<u16>

pub fn mul(self, other: &Complex<u16>) -> Complex<u16>[src]

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

type Output = Complex<f64>

pub fn mul(self, other: Complex<f64>) -> <f64 as Mul<Complex<f64>>>::Output[src]

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

type Output = Complex<u32>

pub fn mul(self, other: &Complex<u32>) -> Complex<u32>[src]

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

type Output = Complex<u32>

pub fn mul(self, other: &Complex<u32>) -> Complex<u32>[src]

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

type Output = Complex<isize>

pub fn mul(self, other: &Complex<isize>) -> Complex<isize>[src]

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

type Output = Complex<f64>

pub fn mul(self, other: &Complex<f64>) -> Complex<f64>[src]

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

type Output = Complex<u64>

pub fn mul(self, other: Complex<u64>) -> <u64 as Mul<Complex<u64>>>::Output[src]

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

type Output = Complex<u32>

pub fn mul(self, other: Complex<u32>) -> <u32 as Mul<Complex<u32>>>::Output[src]

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

type Output = Complex<T>

pub fn mul(self, other: &T) -> <&'b Complex<T> as Mul<&'a T>>::Output[src]

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

type Output = Complex<i32>

pub fn mul(self, other: Complex<i32>) -> Complex<i32>[src]

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

type Output = Complex<i16>

pub fn mul(self, other: Complex<i16>) -> Complex<i16>[src]

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

type Output = Complex<u128>

pub fn mul(self, other: Complex<u128>) -> Complex<u128>[src]

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

type Output = Complex<i8>

pub fn mul(self, other: &Complex<i8>) -> Complex<i8>[src]

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

type Output = Complex<u8>

pub fn mul(self, other: &Complex<u8>) -> Complex<u8>[src]

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

type Output = Complex<u8>

pub fn mul(self, other: &Complex<u8>) -> Complex<u8>[src]

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

type Output = Complex<u32>

pub fn mul(self, other: Complex<u32>) -> Complex<u32>[src]

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

type Output = Complex<i16>

pub fn mul(self, other: &Complex<i16>) -> Complex<i16>[src]

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

type Output = Complex<f32>

pub fn mul(self, other: &Complex<f32>) -> Complex<f32>[src]

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

type Output = Complex<u128>

pub fn mul(self, other: Complex<u128>) -> <u128 as Mul<Complex<u128>>>::Output[src]

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

type Output = Complex<i64>

pub fn mul(self, other: Complex<i64>) -> Complex<i64>[src]

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

type Output = Complex<u16>

pub fn mul(self, other: &Complex<u16>) -> Complex<u16>[src]

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

type Output = Complex<f32>

pub fn mul(self, other: Complex<f32>) -> <f32 as Mul<Complex<f32>>>::Output[src]

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

type Output = Complex<isize>

pub fn mul(self, other: &Complex<isize>) -> Complex<isize>[src]

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

type Output = Complex<i16>

pub fn mul(self, other: Complex<i16>) -> <i16 as Mul<Complex<i16>>>::Output[src]

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

type Output = Complex<usize>

pub fn mul(self, other: &Complex<usize>) -> Complex<usize>[src]

impl Mul<B1> for UTerm

UTerm * B1 = UTerm

type Output = UTerm

pub fn mul(self, B1) -> <UTerm as Mul<B1>>::Output

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

UTerm * U = UTerm

type Output = UTerm

pub fn mul(self, U) -> <UTerm as Mul<U>>::Output

impl<U, B> Mul<B1> for UInt<U, B> where
    U: Unsigned,
    B: Bit, 

UInt * B1 = UInt

type Output = UInt<U, B>

pub fn mul(self, B1) -> <UInt<U, B> as Mul<B1>>::Output

impl<V, A> Mul<TArr<V, A>> for Z0 where
    Z0: Mul<A>, 

type Output = TArr<Z0, <Z0 as Mul<A>>::Output>

pub fn mul(self, rhs: TArr<V, A>) -> <Z0 as Mul<TArr<V, A>>>::Output

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

P * Z0 = Z0

type Output = Z0

pub fn mul(self, Z0) -> <PInt<U> as Mul<Z0>>::Output

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

P(Ul) * N(Ur) = N(Ul * Ur)

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

pub fn mul(self, NInt<Ur>) -> <PInt<Ul> as Mul<NInt<Ur>>>::Output

impl<V, A, U> Mul<TArr<V, A>> for PInt<U> where
    U: Unsigned + NonZero,
    PInt<U>: Mul<A>,
    PInt<U>: Mul<V>, 

type Output = TArr<<PInt<U> as Mul<V>>::Output, <PInt<U> as Mul<A>>::Output>

pub fn mul(self, rhs: TArr<V, A>) -> <PInt<U> as Mul<TArr<V, A>>>::Output

impl<Ul, B, Ur> Mul<UInt<Ur, B>> for UInt<Ul, B0> where
    B: Bit,
    Ul: Unsigned + Mul<UInt<Ur, B>>,
    Ur: Unsigned, 

UInt<Ul, B0> * UInt<Ur, B> = UInt<(Ul * UInt<Ur, B>), B0>

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

pub fn mul(self, rhs: UInt<Ur, B>) -> <UInt<Ul, B0> as Mul<UInt<Ur, B>>>::Output

impl<U> Mul<ATerm> for PInt<U> where
    U: Unsigned + NonZero, 

type Output = ATerm

pub fn mul(self, ATerm) -> <PInt<U> as Mul<ATerm>>::Output

impl Mul<ATerm> for Z0

type Output = ATerm

pub fn mul(self, ATerm) -> <Z0 as Mul<ATerm>>::Output

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

P(Ul) * P(Ur) = P(Ul * Ur)

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

pub fn mul(self, PInt<Ur>) -> <PInt<Ul> as Mul<PInt<Ur>>>::Output

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

UInt * B0 = UTerm

type Output = UTerm

pub fn mul(self, B0) -> <UInt<U, B> as Mul<B0>>::Output

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

N * Z0 = Z0

type Output = Z0

pub fn mul(self, Z0) -> <NInt<U> as Mul<Z0>>::Output

impl<Rhs> Mul<Rhs> for ATerm

type Output = ATerm

pub fn mul(self, Rhs) -> <ATerm as Mul<Rhs>>::Output

impl<U> Mul<ATerm> for NInt<U> where
    U: Unsigned + NonZero, 

type Output = ATerm

pub fn mul(self, ATerm) -> <NInt<U> as Mul<ATerm>>::Output

impl<V, A, U> Mul<TArr<V, A>> for NInt<U> where
    U: Unsigned + NonZero,
    NInt<U>: Mul<A>,
    NInt<U>: Mul<V>, 

type Output = TArr<<NInt<U> as Mul<V>>::Output, <NInt<U> as Mul<A>>::Output>

pub fn mul(self, rhs: TArr<V, A>) -> <NInt<U> as Mul<TArr<V, A>>>::Output

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

N(Ul) * N(Ur) = P(Ul * Ur)

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

pub fn mul(self, NInt<Ur>) -> <NInt<Ul> as Mul<NInt<Ur>>>::Output

impl<V, A, Rhs> Mul<Rhs> for TArr<V, A> where
    V: Mul<Rhs>,
    Rhs: Copy,
    A: Mul<Rhs>, 

type Output = TArr<<V as Mul<Rhs>>::Output, <A as Mul<Rhs>>::Output>

pub fn mul(self, rhs: Rhs) -> <TArr<V, A> as Mul<Rhs>>::Output

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

UInt<U, B> * UTerm = UTerm

type Output = UTerm

pub fn mul(self, UTerm) -> <UInt<U, B> as Mul<UTerm>>::Output

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

N(Ul) * P(Ur) = N(Ul * Ur)

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

pub fn mul(self, PInt<Ur>) -> <NInt<Ul> as Mul<PInt<Ur>>>::Output

impl Mul<B0> for UTerm

UTerm * B0 = UTerm

type Output = UTerm

pub fn mul(self, B0) -> <UTerm as Mul<B0>>::Output

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

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

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

pub fn mul(self, rhs: UInt<Ur, B>) -> <UInt<Ul, B1> as Mul<UInt<Ur, B>>>::Output

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

Z0 * I = Z0

type Output = Z0

pub fn mul(self, I) -> <Z0 as Mul<I>>::Output

impl<'a, 'b, T> Mul<&'b T> for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

pub fn mul(self, other: &'b T) -> Ratio<T>[src]

impl<T> Mul<T> for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

pub fn mul(self, rhs: T) -> Ratio<T>[src]

impl<'a, T> Mul<&'a T> for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

pub fn mul(self, other: &T) -> Ratio<T>[src]

impl<'a, T> Mul<&'a Ratio<T>> for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

pub fn mul(self, other: &Ratio<T>) -> Ratio<T>[src]

impl<'a, T> Mul<T> for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

pub fn mul(self, other: T) -> Ratio<T>[src]

impl<'a, 'b, T> Mul<&'b Ratio<T>> for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

pub fn mul(self, other: &'b Ratio<T>) -> Ratio<T>[src]

impl<'a, T> Mul<Ratio<T>> for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

pub fn mul(self, other: Ratio<T>) -> Ratio<T>[src]

impl<T> Mul<Ratio<T>> for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

pub fn mul(self, rhs: Ratio<T>) -> Ratio<T>[src]

Implementors