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]

Expand description

The resulting type after applying the * operator.

Loading content...

Required methods

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

Expand description

Performs the * operation.

Example

assert_eq!(12 * 2, 24);
Loading content...

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, 'b> Mul<&'b u16> for &'a BigUint[src]

type Output = BigUint

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

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

type Output = BigUint

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

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

type Output = BigUint

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

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

type Output = BigUint

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

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

type Output = BigInt

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

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

type Output = BigInt

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

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

type Output = BigInt

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

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

type Output = BigUint

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

impl<'a> Mul<&'a BigInt> for usize[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, 'b> Mul<&'b u64> for &'a BigUint[src]

type Output = BigUint

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

impl Mul<u32> for BigInt[src]

type Output = BigInt

pub fn mul(self, other: u32) -> BigInt[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> Mul<&'a BigInt> for i8[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<u8> for &'a BigInt[src]

type Output = BigInt

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

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

type Output = BigUint

pub fn mul(self, other: u128) -> BigUint[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 u128> for BigInt[src]

type Output = BigInt

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

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

type Output = BigInt

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

impl<'a, 'b> Mul<&'a BigInt> for &'b u32[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<'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 Mul<i32> for BigInt[src]

type Output = BigInt

pub fn mul(self, other: i32) -> BigInt[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<&'b i64> for &'a BigInt[src]

type Output = BigInt

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

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

type Output = BigInt

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

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

type Output = BigInt

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

impl Mul<u8> for BigInt[src]

type Output = BigInt

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

impl Mul<BigInt> for u64[src]

type Output = BigInt

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

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

type Output = BigUint

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

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

type Output = BigInt

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

impl Mul<i64> for BigInt[src]

type Output = BigInt

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

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

type Output = BigInt

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

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

type Output = BigInt

pub fn mul(self, other: i32) -> 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 u128[src]

type Output = BigInt

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

impl<'a> Mul<BigInt> for &'a 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 u8[src]

type Output = BigInt

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

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

type Output = BigUint

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

impl Mul<BigUint> for u32[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 BigInt> for &'b usize[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 Mul<BigInt> for i8[src]

type Output = BigInt

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

impl Mul<Sign> for Sign[src]

type Output = Sign

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

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

type Output = BigUint

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

impl Mul<u128> for BigUint[src]

type Output = BigUint

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

impl Mul<BigUint> for u8[src]

type Output = BigUint

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

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

type Output = BigUint

pub fn mul(self, other: &u64) -> 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> Mul<&'a BigInt> for i128[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, '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 u128[src]

type Output = BigUint

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

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

type Output = BigUint

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

impl Mul<u8> for BigUint[src]

type Output = BigUint

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

impl Mul<BigInt> for BigInt[src]

type Output = BigInt

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

impl<'a> Mul<BigInt> for &'a BigInt[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 Mul<u16> for BigUint[src]

type Output = BigUint

pub fn mul(self, other: u16) -> BigUint[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<&'a BigInt> for isize[src]

type Output = BigInt

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

impl<'a> Mul<&'a BigInt> for BigInt[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<&'b u64> for &'a BigInt[src]

type Output = BigInt

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

impl Mul<BigUint> for u128[src]

type Output = BigUint

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

impl Mul<i8> for BigInt[src]

type Output = BigInt

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

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

type Output = BigInt

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

impl Mul<i128> for BigInt[src]

type Output = BigInt

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

impl Mul<BigInt> for u128[src]

type Output = BigInt

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

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

type Output = BigInt

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

impl Mul<u64> for BigUint[src]

type Output = BigUint

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

impl Mul<u64> for BigInt[src]

type Output = BigInt

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

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

type Output = BigUint

pub fn mul(self, other: &BigUint) -> BigUint[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<u32> for &'a BigInt[src]

type Output = BigInt

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

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

type Output = BigUint

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

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

type Output = BigUint

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

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

type Output = BigUint

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

impl Mul<BigInt> for usize[src]

type Output = BigInt

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

impl<'a> Mul<&'a BigInt> for i16[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<&'a usize> for BigInt[src]

type Output = BigInt

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

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

type Output = BigInt

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

impl<'a> Mul<&'a BigUint> for BigUint[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, 'b> Mul<&'b i16> for &'a BigInt[src]

type Output = BigInt

pub fn mul(self, other: &i16) -> 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<&'b u8> for &'a BigUint[src]

type Output = BigUint

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

impl Mul<BigUint> for BigUint[src]

type Output = BigUint

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

impl<'a, 'b> Mul<&'a BigInt> for &'b i32[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, 'b> Mul<&'a BigUint> for &'b u16[src]

type Output = BigUint

pub fn mul(self, other: &BigUint) -> BigUint[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 BigInt> for u8[src]

type Output = BigInt

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

impl Mul<BigInt> for i32[src]

type Output = BigInt

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

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

type Output = BigInt

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

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

type Output = BigUint

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

impl Mul<BigUint> for u16[src]

type Output = BigUint

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

impl Mul<u128> for BigInt[src]

type Output = BigInt

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

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

type Output = BigUint

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

impl Mul<BigInt> for isize[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 u128[src]

type Output = BigInt

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

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

type Output = BigInt

pub fn mul(self, other: u16) -> 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<u16> for &'a BigUint[src]

type Output = BigUint

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

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

type Output = BigInt

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

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

type Output = BigInt

pub fn mul(self, other: &u8) -> 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 usize[src]

type Output = BigInt

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

impl Mul<i16> for BigInt[src]

type Output = BigInt

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

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

type Output = BigInt

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

impl Mul<BigInt> for i128[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<i64> for &'a BigInt[src]

type Output = BigInt

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

impl Mul<u32> for BigUint[src]

type Output = BigUint

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

impl Mul<isize> for BigInt[src]

type Output = BigInt

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

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

type Output = BigUint

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

impl Mul<BigInt> for i16[src]

type Output = BigInt

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

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

type Output = BigUint

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

impl Mul<BigInt> for i64[src]

type Output = BigInt

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

impl Mul<BigUint> for u64[src]

type Output = BigUint

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

impl<'a> Mul<&'a BigInt> for i64[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<i128> for &'a BigInt[src]

type Output = BigInt

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

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

type Output = BigInt

pub fn mul(self, other: &u16) -> 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 u16> for BigUint[src]

type Output = BigUint

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

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

type Output = BigInt

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

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

type Output = BigInt

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

impl Mul<BigUint> for usize[src]

type Output = BigUint

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

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

type Output = BigUint

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

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

type Output = BigInt

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

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

type Output = BigUint

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

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

type Output = BigInt

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

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

type Output = BigInt

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

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

type Output = BigUint

pub fn mul(self, other: BigUint) -> BigUint[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<&'a u32> for BigInt[src]

type Output = BigInt

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

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

type Output = BigInt

pub fn mul(self, other: BigInt) -> BigInt[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<&'b i32> for &'a BigInt[src]

type Output = BigInt

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

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

type Output = BigUint

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

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

type Output = BigInt

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

impl Mul<BigInt> for u32[src]

type Output = BigInt

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

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

type Output = BigInt

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

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

type Output = BigInt

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

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

type Output = BigInt

pub fn mul(self, other: &BigInt) -> BigInt[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<'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<Complex<i16>> for &'a i16[src]

type Output = Complex<i16>

pub fn mul(self, other: Complex<i16>) -> Complex<i16>[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<usize>> for usize[src]

type Output = Complex<usize>

pub fn mul(self, other: &Complex<usize>) -> Complex<usize>[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 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> 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<u64>> for 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<'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<&'a Complex<u128>> for u128[src]

type Output = Complex<u128>

pub fn mul(self, other: &Complex<u128>) -> Complex<u128>[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<Complex<u32>> for &'a u32[src]

type Output = Complex<u32>

pub fn mul(self, other: Complex<u32>) -> Complex<u32>[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<f64>> for &'b f64[src]

type Output = Complex<f64>

pub fn mul(self, other: &Complex<f64>) -> Complex<f64>[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, '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, 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<&'a Complex<u16>> for u16[src]

type Output = Complex<u16>

pub fn mul(self, other: &Complex<u16>) -> Complex<u16>[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> Mul<Complex<u8>> for &'a u8[src]

type Output = Complex<u8>

pub fn mul(self, other: Complex<u8>) -> Complex<u8>[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<u32>> for u32[src]

type Output = Complex<u32>

pub fn mul(self, other: Complex<u32>) -> <u32 as Mul<Complex<u32>>>::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<u32>> for u32[src]

type Output = Complex<u32>

pub fn mul(self, other: &Complex<u32>) -> Complex<u32>[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<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<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<i16>> for i16[src]

type Output = Complex<i16>

pub fn mul(self, other: Complex<i16>) -> <i16 as Mul<Complex<i16>>>::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 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<u16>> for &'b u16[src]

type Output = Complex<u16>

pub fn mul(self, other: &Complex<u16>) -> Complex<u16>[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<i8>> for &'a i8[src]

type Output = Complex<i8>

pub fn mul(self, other: Complex<i8>) -> Complex<i8>[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 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> Mul<Complex<f64>> for &'a f64[src]

type Output = Complex<f64>

pub fn mul(self, other: Complex<f64>) -> Complex<f64>[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<i64>> for &'b 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, 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> Mul<Complex<f32>> for &'a f32[src]

type Output = Complex<f32>

pub fn mul(self, other: Complex<f32>) -> Complex<f32>[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<i128>> for i128[src]

type Output = Complex<i128>

pub fn mul(self, other: &Complex<i128>) -> Complex<i128>[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 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<u8>> for u8[src]

type Output = Complex<u8>

pub fn mul(self, other: Complex<u8>) -> <u8 as Mul<Complex<u8>>>::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, 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, '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, 'b> Mul<&'a Complex<u8>> for &'b u8[src]

type Output = Complex<u8>

pub fn mul(self, other: &Complex<u8>) -> Complex<u8>[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<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<&'a Complex<f32>> for f32[src]

type Output = Complex<f32>

pub fn mul(self, other: &Complex<f32>) -> Complex<f32>[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<i32>> for &'b i32[src]

type Output = Complex<i32>

pub fn mul(self, other: &Complex<i32>) -> Complex<i32>[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<usize>> for &'a usize[src]

type Output = Complex<usize>

pub fn mul(self, other: Complex<usize>) -> Complex<usize>[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> Mul<&'a Complex<isize>> for isize[src]

type Output = Complex<isize>

pub fn mul(self, other: &Complex<isize>) -> Complex<isize>[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, '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<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<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<'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<&'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<'b, N, D, R> Mul<&'b Similarity<N, D, R>> for Isometry<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Similarity<N, D, R>

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

impl<'a, 'b, N, D, R> Mul<&'b Translation<N, D>> for &'a Similarity<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Similarity<N, D, R>

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

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

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

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

impl<'b, N, D> Mul<&'b Rotation<N, D>> for Isometry<N, D, Rotation<N, D>> where
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

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

pub fn mul(
    self,
    rhs: &'b Rotation<N, D>
) -> <Isometry<N, D, Rotation<N, D>> as Mul<&'b Rotation<N, D>>>::Output
[src]

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

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

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

impl<N, D> Mul<Similarity<N, D, Rotation<N, D>>> for Rotation<N, D> where
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Similarity<N, D, Rotation<N, D>>

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

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

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

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

impl<'a, 'b, N, D, R> Mul<&'b Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>> for &'a Similarity<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>

pub fn mul(
    self,
    right: &'b Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>
) -> <&'a Similarity<N, D, R> as Mul<&'b Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>>::Output
[src]

impl<'a, N, D> Mul<Rotation<N, D>> for &'a Similarity<N, D, Rotation<N, D>> where
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Similarity<N, D, Rotation<N, D>>

pub fn mul(
    self,
    rhs: Rotation<N, D>
) -> <&'a Similarity<N, D, Rotation<N, D>> as Mul<Rotation<N, D>>>::Output
[src]

impl<'a, N> Mul<Unit<Quaternion<N>>> for &'a Unit<Quaternion<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

type Output = Unit<Quaternion<N>>

pub fn mul(
    self,
    rhs: Unit<Quaternion<N>>
) -> <&'a Unit<Quaternion<N>> as Mul<Unit<Quaternion<N>>>>::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<'a, N> Mul<Point<N, U3>> for &'a Unit<Quaternion<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Point<N, U3>

pub fn mul(
    self,
    rhs: Point<N, U3>
) -> <&'a Unit<Quaternion<N>> as Mul<Point<N, U3>>>::Output
[src]

impl<'b, N, D> Mul<&'b Point<N, D>> for Translation<N, D> where
    N: Scalar + ClosedAdd<N>,
    D: DimName,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: SameShapeAllocator<N, D, U1, D, U1>,
    ShapeConstraint: SameNumberOfRows<D, D>,
    ShapeConstraint: SameNumberOfColumns<U1, U1>,
    <ShapeConstraint as SameNumberOfRows<D, D>>::Representative == D, 
[src]

type Output = Point<N, D>

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

impl<'a, N, R1, C1, D2, SA> Mul<Rotation<N, D2>> for &'a Matrix<N, R1, C1, SA> where
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N>,
    D2: DimName,
    R1: Dim,
    C1: Dim,
    SA: Storage<N, R1, C1>,
    DefaultAllocator: Allocator<N, R1, C1>,
    DefaultAllocator: Allocator<N, D2, D2>,
    DefaultAllocator: Allocator<N, R1, D2>,
    DefaultAllocator: Allocator<N, R1, D2>,
    ShapeConstraint: AreMultipliable<R1, C1, D2, D2>, 
[src]

type Output = Matrix<N, R1, D2, <DefaultAllocator as Allocator<N, R1, D2>>::Buffer>

pub fn mul(
    self,
    right: Rotation<N, D2>
) -> <&'a Matrix<N, R1, C1, SA> as Mul<Rotation<N, D2>>>::Output
[src]

impl<'a, 'b, N, R1, C1, D2, SA> Mul<&'b Point<N, D2>> for &'a Matrix<N, R1, C1, SA> where
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N>,
    D2: DimName,
    R1: DimName,
    C1: Dim,
    SA: Storage<N, R1, C1>,
    DefaultAllocator: Allocator<N, R1, C1>,
    DefaultAllocator: Allocator<N, D2, U1>,
    DefaultAllocator: Allocator<N, R1, U1>,
    ShapeConstraint: AreMultipliable<R1, C1, D2, U1>, 
[src]

type Output = Point<N, R1>

pub fn mul(
    self,
    right: &'b Point<N, D2>
) -> <&'a Matrix<N, R1, C1, SA> as Mul<&'b Point<N, D2>>>::Output
[src]

impl<N, D, R> Mul<Translation<N, D>> for Similarity<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Similarity<N, D, R>

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

impl<'a, 'b, N, D, C> Mul<&'b Translation<N, D>> for &'a Transform<N, D, C> where
    C: TCategoryMul<TAffine>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, U1>, 
[src]

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

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

impl<N, R1, C1, D2, SA> Mul<Point<N, D2>> for Matrix<N, R1, C1, SA> where
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N>,
    D2: DimName,
    R1: DimName,
    C1: Dim,
    SA: Storage<N, R1, C1>,
    DefaultAllocator: Allocator<N, R1, C1>,
    DefaultAllocator: Allocator<N, D2, U1>,
    DefaultAllocator: Allocator<N, R1, U1>,
    ShapeConstraint: AreMultipliable<R1, C1, D2, U1>, 
[src]

type Output = Point<N, R1>

pub fn mul(
    self,
    right: Point<N, D2>
) -> <Matrix<N, R1, C1, SA> as Mul<Point<N, D2>>>::Output
[src]

impl<'a, 'b, N, D, S> Mul<&'b Unit<Matrix<N, D, U1, S>>> for &'a Rotation<N, D> where
    S: Storage<N, D, U1>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N>,
    D: DimName,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    ShapeConstraint: AreMultipliable<D, D, D, U1>, 
[src]

type Output = Unit<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>

pub fn mul(
    self,
    right: &'b Unit<Matrix<N, D, U1, S>>
) -> <&'a Rotation<N, D> as Mul<&'b Unit<Matrix<N, D, U1, S>>>>::Output
[src]

impl<'a, 'b, N, D, R> Mul<&'b Unit<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>> for &'a Isometry<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Unit<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>

pub fn mul(
    self,
    right: &'b Unit<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>
) -> <&'a Isometry<N, D, R> as Mul<&'b Unit<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>>>::Output
[src]

impl<N> Mul<Point<N, U2>> for Unit<Complex<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Point<N, U2>

pub fn mul(
    self,
    rhs: Point<N, U2>
) -> <Unit<Complex<N>> as Mul<Point<N, U2>>>::Output
[src]

impl<N, C> Mul<Unit<Quaternion<N>>> for Transform<N, U3, C> where
    C: TCategoryMul<TAffine>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    DefaultAllocator: Allocator<N, U4, U4>,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

type Output = Transform<N, U3, <C as TCategoryMul<TAffine>>::Representative>

pub fn mul(
    self,
    rhs: Unit<Quaternion<N>>
) -> <Transform<N, U3, C> as Mul<Unit<Quaternion<N>>>>::Output
[src]

impl<N> Mul<N> for Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField, 
[src]

type Output = Quaternion<N>

pub fn mul(self, n: N) -> <Quaternion<N> as Mul<N>>::Output[src]

impl<'b, N, D> Mul<&'b Rotation<N, D>> for Translation<N, D> where
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

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

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

impl<'a, 'b, N> Mul<&'b Rotation<N, U3>> for &'a Unit<Quaternion<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U3>, 
[src]

type Output = Unit<Quaternion<N>>

pub fn mul(
    self,
    rhs: &'b Rotation<N, U3>
) -> <&'a Unit<Quaternion<N>> as Mul<&'b Rotation<N, U3>>>::Output
[src]

impl<'b, N> Mul<&'b Unit<Complex<N>>> for Similarity<N, U2, Unit<Complex<N>>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Similarity<N, U2, Unit<Complex<N>>>

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

impl<N, D, R> Mul<Isometry<N, D, R>> for Translation<N, D> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Isometry<N, D, R>

pub fn mul(
    self,
    right: Isometry<N, D, R>
) -> <Translation<N, D> as Mul<Isometry<N, D, R>>>::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<N, D, C, R> Mul<Similarity<N, D, R>> for Transform<N, D, C> where
    C: TCategoryMul<TAffine>,
    R: SubsetOf<Matrix<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output, <DefaultAllocator as Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>>::Buffer>>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, U1>, 
[src]

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

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

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

type Output = Quaternion<N>

pub fn mul(self, n: N) -> <&'a Quaternion<N> as Mul<N>>::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<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<'a, 'b, N> Mul<&'b Similarity<N, U2, Unit<Complex<N>>>> for &'a Unit<Complex<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Similarity<N, U2, Unit<Complex<N>>>

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

impl<N> Mul<Unit<Complex<N>>> for Isometry<N, U2, Unit<Complex<N>>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Isometry<N, U2, Unit<Complex<N>>>

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

impl<'b, D> Mul<&'b Point<i16, D>> for i16 where
    D: DimName,
    DefaultAllocator: Allocator<i16, D, U1>, 
[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<N, R, C, S> Mul<N> for Matrix<N, R, C, S> where
    C: Dim,
    R: Dim,
    S: Storage<N, R, C>,
    N: Scalar + ClosedMul<N>,
    DefaultAllocator: Allocator<N, R, C>, 
[src]

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

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

impl<'b, D> Mul<&'b Point<usize, D>> for usize where
    D: DimName,
    DefaultAllocator: Allocator<usize, D, U1>, 
[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<'b, N> Mul<&'b Unit<Complex<N>>> for Isometry<N, U2, Unit<Complex<N>>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Isometry<N, U2, Unit<Complex<N>>>

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

impl<N, D, C> Mul<Translation<N, D>> for Transform<N, D, C> where
    C: TCategoryMul<TAffine>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, U1>, 
[src]

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

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

impl<'a, N> Mul<Unit<Complex<N>>> for &'a Similarity<N, U2, Unit<Complex<N>>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Similarity<N, U2, Unit<Complex<N>>>

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

impl<'a, 'b, N, D> Mul<&'b Point<N, D>> for &'a Translation<N, D> where
    N: Scalar + ClosedAdd<N>,
    D: DimName,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: SameShapeAllocator<N, D, U1, D, U1>,
    ShapeConstraint: SameNumberOfRows<D, D>,
    ShapeConstraint: SameNumberOfColumns<U1, U1>,
    <ShapeConstraint as SameNumberOfRows<D, D>>::Representative == D, 
[src]

type Output = Point<N, D>

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

impl<N> Mul<Unit<Quaternion<N>>> for Unit<Quaternion<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

type Output = Unit<Quaternion<N>>

pub fn mul(
    self,
    rhs: Unit<Quaternion<N>>
) -> <Unit<Quaternion<N>> as Mul<Unit<Quaternion<N>>>>::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<'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<N, D, R> Mul<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>> for Isometry<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>

pub fn mul(
    self,
    right: Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>
) -> <Isometry<N, D, R> as Mul<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>>::Output
[src]

impl<'a, 'b, N> Mul<&'b Unit<Quaternion<N>>> for &'a Unit<Quaternion<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

type Output = Unit<Quaternion<N>>

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

impl<'a, N, D, R> Mul<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>> for &'a Similarity<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>

pub fn mul(
    self,
    right: Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>
) -> <&'a Similarity<N, D, R> as Mul<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>>::Output
[src]

impl<'a, N, D, R> Mul<Similarity<N, D, R>> for &'a Isometry<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Similarity<N, D, R>

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

impl<'a, 'b, N> Mul<&'b Similarity<N, U3, Unit<Quaternion<N>>>> for &'a Unit<Quaternion<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Similarity<N, U3, Unit<Quaternion<N>>>

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

impl<N, D> Mul<N> for Point<N, D> where
    N: Scalar + ClosedMul<N>,
    D: DimName,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Point<N, D>

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

impl<'b, N, R1, C1, D2, SA> Mul<&'b Rotation<N, D2>> for Matrix<N, R1, C1, SA> where
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N>,
    D2: DimName,
    R1: Dim,
    C1: Dim,
    SA: Storage<N, R1, C1>,
    DefaultAllocator: Allocator<N, R1, C1>,
    DefaultAllocator: Allocator<N, D2, D2>,
    DefaultAllocator: Allocator<N, R1, D2>,
    DefaultAllocator: Allocator<N, R1, D2>,
    ShapeConstraint: AreMultipliable<R1, C1, D2, D2>, 
[src]

type Output = Matrix<N, R1, D2, <DefaultAllocator as Allocator<N, R1, D2>>::Buffer>

pub fn mul(
    self,
    right: &'b Rotation<N, D2>
) -> <Matrix<N, R1, C1, SA> as Mul<&'b Rotation<N, D2>>>::Output
[src]

impl<'b, D> Mul<&'b Point<f64, D>> for f64 where
    D: DimName,
    DefaultAllocator: Allocator<f64, D, U1>, 
[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, D> Mul<&'b Point<i32, D>> for i32 where
    D: DimName,
    DefaultAllocator: Allocator<i32, D, U1>, 
[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<N, D1, R2, C2, SB> Mul<Matrix<N, R2, C2, SB>> for Rotation<N, D1> where
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N>,
    R2: Dim,
    C2: Dim,
    D1: DimName,
    SB: Storage<N, R2, C2>,
    DefaultAllocator: Allocator<N, D1, D1>,
    DefaultAllocator: Allocator<N, R2, C2>,
    DefaultAllocator: Allocator<N, D1, C2>,
    DefaultAllocator: Allocator<N, D1, C2>,
    ShapeConstraint: AreMultipliable<D1, D1, R2, C2>, 
[src]

type Output = Matrix<N, D1, C2, <DefaultAllocator as Allocator<N, D1, C2>>::Buffer>

pub fn mul(
    self,
    right: Matrix<N, R2, C2, SB>
) -> <Rotation<N, D1> as Mul<Matrix<N, R2, C2, SB>>>::Output
[src]

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

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

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

impl<'b, N> Mul<&'b Rotation<N, U2>> for Unit<Complex<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U2>, 
[src]

type Output = Unit<Complex<N>>

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

impl<'a, N, D> Mul<N> for &'a Point<N, D> where
    N: Scalar + ClosedMul<N>,
    D: DimName,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Point<N, D>

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

impl<'a, 'b, N, D, C> Mul<&'b Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>> for &'a Transform<N, D, C> where
    C: TCategory,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, U1>, 
[src]

type Output = Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>

pub fn mul(
    self,
    rhs: &'b Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>
) -> <&'a Transform<N, D, C> as Mul<&'b Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>>::Output
[src]

impl<'b, D> Mul<&'b Point<f32, D>> for f32 where
    D: DimName,
    DefaultAllocator: Allocator<f32, D, U1>, 
[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<'a, 'b, N, D, C, R> Mul<&'b Similarity<N, D, R>> for &'a Transform<N, D, C> where
    C: TCategoryMul<TAffine>,
    R: SubsetOf<Matrix<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output, <DefaultAllocator as Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>>::Buffer>>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, U1>, 
[src]

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

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

impl<N> Mul<Rotation<N, U2>> for Unit<Complex<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U2>, 
[src]

type Output = Unit<Complex<N>>

pub fn mul(
    self,
    rhs: Rotation<N, U2>
) -> <Unit<Complex<N>> as Mul<Rotation<N, U2>>>::Output
[src]

impl<'b, N, C> Mul<&'b Unit<Quaternion<N>>> for Transform<N, U3, C> where
    C: TCategoryMul<TAffine>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    DefaultAllocator: Allocator<N, U4, U4>,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

type Output = Transform<N, U3, <C as TCategoryMul<TAffine>>::Representative>

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

impl<'a, 'b, N, D> Mul<&'b Similarity<N, D, Rotation<N, D>>> for &'a Rotation<N, D> where
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Similarity<N, D, Rotation<N, D>>

pub fn mul(
    self,
    right: &'b Similarity<N, D, Rotation<N, D>>
) -> <&'a Rotation<N, D> as Mul<&'b Similarity<N, D, Rotation<N, D>>>>::Output
[src]

impl<'b, N> Mul<&'b Isometry<N, U3, Unit<Quaternion<N>>>> for Unit<Quaternion<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Isometry<N, U3, Unit<Quaternion<N>>>

pub fn mul(
    self,
    right: &'b Isometry<N, U3, Unit<Quaternion<N>>>
) -> <Unit<Quaternion<N>> as Mul<&'b Isometry<N, U3, Unit<Quaternion<N>>>>>::Output
[src]

impl<'b, N> Mul<&'b Rotation<N, U3>> for Unit<Quaternion<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U3>, 
[src]

type Output = Unit<Quaternion<N>>

pub fn mul(
    self,
    rhs: &'b Rotation<N, U3>
) -> <Unit<Quaternion<N>> as Mul<&'b Rotation<N, U3>>>::Output
[src]

impl<N> Mul<Isometry<N, U3, Unit<Quaternion<N>>>> for Unit<Quaternion<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Isometry<N, U3, Unit<Quaternion<N>>>

pub fn mul(
    self,
    right: Isometry<N, U3, Unit<Quaternion<N>>>
) -> <Unit<Quaternion<N>> as Mul<Isometry<N, U3, Unit<Quaternion<N>>>>>::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, 'b, N> Mul<&'b Unit<Complex<N>>> for &'a Unit<Complex<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Complex<N>>

pub fn mul(
    self,
    rhs: &'b Unit<Complex<N>>
) -> <&'a Unit<Complex<N>> as Mul<&'b Unit<Complex<N>>>>::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<'b, N, D, R> Mul<&'b Similarity<N, D, R>> for Translation<N, D> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Similarity<N, D, R>

pub fn mul(
    self,
    right: &'b Similarity<N, D, R>
) -> <Translation<N, D> as Mul<&'b Similarity<N, D, R>>>::Output
[src]

impl<N, D, C> Mul<Point<N, D>> for Transform<N, D, C> where
    C: TCategory,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, U1>,
    DefaultAllocator: Allocator<N, D, D>, 
[src]

type Output = Point<N, D>

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

impl<N, D> Mul<Rotation<N, D>> for Translation<N, D> where
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

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

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

impl<'b, N, D, R> Mul<&'b Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>> for Similarity<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>

pub fn mul(
    self,
    right: &'b Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>
) -> <Similarity<N, D, R> as Mul<&'b Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>>::Output
[src]

impl<'a, N, D, R> Mul<Isometry<N, D, R>> for &'a Isometry<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Isometry<N, D, R>

pub fn mul(
    self,
    rhs: Isometry<N, D, R>
) -> <&'a Isometry<N, D, R> as Mul<Isometry<N, D, R>>>::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<'a, N, D> Mul<Point<N, D>> for &'a Rotation<N, D> where
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N>,
    D: DimName,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    ShapeConstraint: AreMultipliable<D, D, D, U1>, 
[src]

type Output = Point<N, D>

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

impl<N, D, R> Mul<Isometry<N, D, R>> for Similarity<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Similarity<N, D, R>

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

impl<'a, N, D, R> Mul<Isometry<N, D, R>> for &'a Translation<N, D> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Isometry<N, D, R>

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

impl<'a, N, SB> Mul<Matrix<N, U3, U1, SB>> for &'a Unit<Quaternion<N>> where
    N: SimdRealField,
    SB: Storage<N, U3, U1>,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Matrix<N, U3, U1, <DefaultAllocator as Allocator<N, U3, U1>>::Buffer>

pub fn mul(
    self,
    rhs: Matrix<N, U3, U1, SB>
) -> <&'a Unit<Quaternion<N>> as Mul<Matrix<N, U3, U1, SB>>>::Output
[src]

impl<'b, N, D> Mul<&'b Point<N, D>> for Rotation<N, D> where
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N>,
    D: DimName,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    ShapeConstraint: AreMultipliable<D, D, D, U1>, 
[src]

type Output = Point<N, D>

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

impl<'b, N, S> Mul<&'b Unit<Matrix<N, U2, U1, S>>> for Unit<Complex<N>> where
    S: Storage<N, U2, U1>,
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Unit<Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>>

pub fn mul(
    self,
    rhs: &'b Unit<Matrix<N, U2, U1, S>>
) -> <Unit<Complex<N>> as Mul<&'b Unit<Matrix<N, U2, U1, S>>>>::Output
[src]

impl<'a, N, D, R> Mul<Similarity<N, D, R>> for &'a Translation<N, D> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Similarity<N, D, R>

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

impl<'a, N, S> Mul<Matrix<N, U2, U1, S>> for &'a Unit<Complex<N>> where
    S: Storage<N, U2, U1>,
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>

pub fn mul(
    self,
    rhs: Matrix<N, U2, U1, S>
) -> <&'a Unit<Complex<N>> as Mul<Matrix<N, U2, U1, S>>>::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<'a, 'b, N, D> Mul<&'b Rotation<N, D>> for &'a Similarity<N, D, Rotation<N, D>> where
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Similarity<N, D, Rotation<N, D>>

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

impl<'b, N, S> Mul<&'b Matrix<N, U2, U1, S>> for Unit<Complex<N>> where
    S: Storage<N, U2, U1>,
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>

pub fn mul(
    self,
    rhs: &'b Matrix<N, U2, U1, S>
) -> <Unit<Complex<N>> as Mul<&'b Matrix<N, U2, U1, S>>>::Output
[src]

impl<N, S> Mul<Matrix<N, U2, U1, S>> for Unit<Complex<N>> where
    S: Storage<N, U2, U1>,
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>

pub fn mul(
    self,
    rhs: Matrix<N, U2, U1, S>
) -> <Unit<Complex<N>> as Mul<Matrix<N, U2, U1, S>>>::Output
[src]

impl<'a, N> Mul<Unit<Quaternion<N>>> for &'a Isometry<N, U3, Unit<Quaternion<N>>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Isometry<N, U3, Unit<Quaternion<N>>>

pub fn mul(
    self,
    rhs: Unit<Quaternion<N>>
) -> <&'a Isometry<N, U3, Unit<Quaternion<N>>> as Mul<Unit<Quaternion<N>>>>::Output
[src]

impl<'a, N> Mul<Translation<N, U2>> for &'a Unit<Complex<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Isometry<N, U2, Unit<Complex<N>>>

pub fn mul(
    self,
    rhs: Translation<N, U2>
) -> <&'a Unit<Complex<N>> as Mul<Translation<N, U2>>>::Output
[src]

impl<'b, N, D, R> Mul<&'b Translation<N, D>> for Similarity<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Similarity<N, D, R>

pub fn mul(
    self,
    right: &'b Translation<N, D>
) -> <Similarity<N, D, R> as Mul<&'b Translation<N, D>>>::Output
[src]

impl<N> Mul<Point<N, U3>> for Unit<Quaternion<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Point<N, U3>

pub fn mul(
    self,
    rhs: Point<N, U3>
) -> <Unit<Quaternion<N>> as Mul<Point<N, U3>>>::Output
[src]

impl<N, D> Mul<Point<N, D>> for Rotation<N, D> where
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N>,
    D: DimName,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    ShapeConstraint: AreMultipliable<D, D, D, U1>, 
[src]

type Output = Point<N, D>

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

impl<'b, N, D, C> Mul<&'b Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>> for Transform<N, D, C> where
    C: TCategory,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, U1>, 
[src]

type Output = Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>

pub fn mul(
    self,
    rhs: &'b Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>
) -> <Transform<N, D, C> as Mul<&'b Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>>::Output
[src]

impl<'a, 'b, N> Mul<&'b Quaternion<N>> for &'a Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

type Output = Quaternion<N>

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

impl<'a, 'b, N, D> Mul<&'b Rotation<N, D>> for &'a Translation<N, D> where
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

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

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

impl<'a, 'b, N, D> Mul<&'b Rotation<N, D>> for &'a Isometry<N, D, Rotation<N, D>> where
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

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

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

impl<'a, N, D> Mul<Translation<N, D>> for &'a Rotation<N, D> where
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

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

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

impl<'a, N, D, R> Mul<Similarity<N, D, R>> for &'a Similarity<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Similarity<N, D, R>

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

impl<'a, N, D> Mul<Rotation<N, D>> for &'a Isometry<N, D, Rotation<N, D>> where
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

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

pub fn mul(
    self,
    rhs: Rotation<N, D>
) -> <&'a Isometry<N, D, Rotation<N, D>> as Mul<Rotation<N, D>>>::Output
[src]

impl<N> Mul<Unit<Quaternion<N>>> for Rotation<N, U3> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U3, U3>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

type Output = Unit<Quaternion<N>>

pub fn mul(
    self,
    rhs: Unit<Quaternion<N>>
) -> <Rotation<N, U3> as Mul<Unit<Quaternion<N>>>>::Output
[src]

impl<N, D, CA, CB> Mul<Transform<N, D, CB>> for Transform<N, D, CA> where
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    CA: TCategoryMul<CB>,
    CB: TCategory,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>, 
[src]

type Output = Transform<N, D, <CA as TCategoryMul<CB>>::Representative>

pub fn mul(
    self,
    rhs: Transform<N, D, CB>
) -> <Transform<N, D, CA> as Mul<Transform<N, D, CB>>>::Output
[src]

impl<'a, 'b, N> Mul<&'b Point<N, U2>> for &'a Unit<Complex<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Point<N, U2>

pub fn mul(
    self,
    rhs: &'b Point<N, U2>
) -> <&'a Unit<Complex<N>> as Mul<&'b Point<N, U2>>>::Output
[src]

impl<N> Mul<Translation<N, U2>> for Unit<Complex<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Isometry<N, U2, Unit<Complex<N>>>

pub fn mul(
    self,
    rhs: Translation<N, U2>
) -> <Unit<Complex<N>> as Mul<Translation<N, U2>>>::Output
[src]

impl<'b, N> Mul<&'b Unit<Complex<N>>> for Translation<N, U2> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Isometry<N, U2, Unit<Complex<N>>>

pub fn mul(
    self,
    right: &'b Unit<Complex<N>>
) -> <Translation<N, U2> as Mul<&'b Unit<Complex<N>>>>::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<D> Mul<Point<f64, D>> for f64 where
    D: DimName,
    DefaultAllocator: Allocator<f64, D, U1>, 
[src]

type Output = Point<f64, D>

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

impl<N, D, C, R> Mul<Isometry<N, D, R>> for Transform<N, D, C> where
    C: TCategoryMul<TAffine>,
    R: SubsetOf<Matrix<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output, <DefaultAllocator as Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>>::Buffer>>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, U1>, 
[src]

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

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

impl<'a, N, D> Mul<Rotation<N, D>> for &'a Rotation<N, D> where
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N>,
    D: DimName,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, D>, 
[src]

type Output = Rotation<N, D>

pub fn mul(
    self,
    right: Rotation<N, D>
) -> <&'a Rotation<N, D> as Mul<Rotation<N, D>>>::Output
[src]

impl<N, D, R> Mul<Unit<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>> for Isometry<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Unit<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>

pub fn mul(
    self,
    right: Unit<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>
) -> <Isometry<N, D, R> as Mul<Unit<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>>>::Output
[src]

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

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

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

impl<'b, N> Mul<&'b Unit<Quaternion<N>>> for Translation<N, U3> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Isometry<N, U3, Unit<Quaternion<N>>>

pub fn mul(
    self,
    right: &'b Unit<Quaternion<N>>
) -> <Translation<N, U3> as Mul<&'b Unit<Quaternion<N>>>>::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<'a, N> Mul<Unit<Complex<N>>> for &'a Translation<N, U2> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Isometry<N, U2, Unit<Complex<N>>>

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

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

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

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

impl<'a, N, D> Mul<Point<N, D>> for &'a Translation<N, D> where
    N: Scalar + ClosedAdd<N>,
    D: DimName,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: SameShapeAllocator<N, D, U1, D, U1>,
    ShapeConstraint: SameNumberOfRows<D, D>,
    ShapeConstraint: SameNumberOfColumns<U1, U1>,
    <ShapeConstraint as SameNumberOfRows<D, D>>::Representative == D, 
[src]

type Output = Point<N, D>

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

impl<'b, N, D, C> Mul<&'b Transform<N, D, C>> for Rotation<N, D> where
    C: TCategoryMul<TAffine>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, <D as DimNameAdd<U1>>::Output>, 
[src]

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

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

impl<'a, 'b, N> Mul<&'b Unit<Quaternion<N>>> for &'a Similarity<N, U3, Unit<Quaternion<N>>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Similarity<N, U3, Unit<Quaternion<N>>>

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

impl<'a, 'b, N, D, C> Mul<&'b Transform<N, D, C>> for &'a Translation<N, D> where
    C: TCategoryMul<TAffine>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, <D as DimNameAdd<U1>>::Output>, 
[src]

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

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

impl<'a, N, SB> Mul<Unit<Matrix<N, U3, U1, SB>>> for &'a Unit<Quaternion<N>> where
    N: SimdRealField,
    SB: Storage<N, U3, U1>,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Unit<Matrix<N, U3, U1, <DefaultAllocator as Allocator<N, U3, U1>>::Buffer>>

pub fn mul(
    self,
    rhs: Unit<Matrix<N, U3, U1, SB>>
) -> <&'a Unit<Quaternion<N>> as Mul<Unit<Matrix<N, U3, U1, SB>>>>::Output
[src]

impl<N, R1, C1, R2, C2, SA, SB> Mul<Matrix<N, R2, C2, SB>> for Matrix<N, R1, C1, SA> where
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N>,
    R2: Dim,
    C2: Dim,
    R1: Dim,
    C1: Dim,
    SA: Storage<N, R1, C1>,
    SB: Storage<N, R2, C2>,
    DefaultAllocator: Allocator<N, R1, C2>,
    ShapeConstraint: AreMultipliable<R1, C1, R2, C2>, 
[src]

type Output = Matrix<N, R1, C2, <DefaultAllocator as Allocator<N, R1, C2>>::Buffer>

pub fn mul(
    self,
    rhs: Matrix<N, R2, C2, SB>
) -> <Matrix<N, R1, C1, SA> as Mul<Matrix<N, R2, C2, SB>>>::Output
[src]

impl<D> Mul<Point<isize, D>> for isize where
    D: DimName,
    DefaultAllocator: Allocator<isize, D, U1>, 
[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, N, D, R> Mul<&'b Similarity<N, D, R>> for &'a Translation<N, D> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Similarity<N, D, R>

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

impl<'a, 'b, N> Mul<&'b Translation<N, U3>> for &'a Unit<Quaternion<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Isometry<N, U3, Unit<Quaternion<N>>>

pub fn mul(
    self,
    right: &'b Translation<N, U3>
) -> <&'a Unit<Quaternion<N>> as Mul<&'b Translation<N, U3>>>::Output
[src]

impl<'b, N, D, C> Mul<&'b Transform<N, D, C>> for Translation<N, D> where
    C: TCategoryMul<TAffine>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, <D as DimNameAdd<U1>>::Output>, 
[src]

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

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

impl<'b, N, D, R> Mul<&'b Point<N, D>> for Similarity<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Point<N, D>

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

impl<'a, 'b, N, SB> Mul<&'b Unit<Matrix<N, U3, U1, SB>>> for &'a Unit<Quaternion<N>> where
    N: SimdRealField,
    SB: Storage<N, U3, U1>,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Unit<Matrix<N, U3, U1, <DefaultAllocator as Allocator<N, U3, U1>>::Buffer>>

pub fn mul(
    self,
    rhs: &'b Unit<Matrix<N, U3, U1, SB>>
) -> <&'a Unit<Quaternion<N>> as Mul<&'b Unit<Matrix<N, U3, U1, SB>>>>::Output
[src]

impl<'b, N, D, CA, CB> Mul<&'b Transform<N, D, CB>> for Transform<N, D, CA> where
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    CA: TCategoryMul<CB>,
    CB: TCategory,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>, 
[src]

type Output = Transform<N, D, <CA as TCategoryMul<CB>>::Representative>

pub fn mul(
    self,
    rhs: &'b Transform<N, D, CB>
) -> <Transform<N, D, CA> as Mul<&'b Transform<N, D, CB>>>::Output
[src]

impl<'a, N> Mul<Similarity<N, U2, Unit<Complex<N>>>> for &'a Unit<Complex<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Similarity<N, U2, Unit<Complex<N>>>

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

impl<D> Mul<Point<i16, D>> for i16 where
    D: DimName,
    DefaultAllocator: Allocator<i16, D, U1>, 
[src]

type Output = Point<i16, D>

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

impl<'a, 'b, N> Mul<&'b Unit<Quaternion<N>>> for &'a Isometry<N, U3, Unit<Quaternion<N>>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Isometry<N, U3, Unit<Quaternion<N>>>

pub fn mul(
    self,
    rhs: &'b Unit<Quaternion<N>>
) -> <&'a Isometry<N, U3, Unit<Quaternion<N>>> as Mul<&'b Unit<Quaternion<N>>>>::Output
[src]

impl<D> Mul<Point<usize, D>> for usize where
    D: DimName,
    DefaultAllocator: Allocator<usize, D, U1>, 
[src]

type Output = Point<usize, D>

pub fn mul(
    self,
    right: Point<usize, D>
) -> <usize as Mul<Point<usize, D>>>::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<D> Mul<Point<u64, D>> for u64 where
    D: DimName,
    DefaultAllocator: Allocator<u64, D, U1>, 
[src]

type Output = Point<u64, D>

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

impl<'b, N> Mul<&'b Point<N, U2>> for Unit<Complex<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Point<N, U2>

pub fn mul(
    self,
    rhs: &'b Point<N, U2>
) -> <Unit<Complex<N>> as Mul<&'b Point<N, U2>>>::Output
[src]

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

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

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

impl<'a, 'b, N> Mul<&'b Unit<Quaternion<N>>> for &'a Translation<N, U3> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Isometry<N, U3, Unit<Quaternion<N>>>

pub fn mul(
    self,
    right: &'b Unit<Quaternion<N>>
) -> <&'a Translation<N, U3> as Mul<&'b Unit<Quaternion<N>>>>::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<N> Mul<Unit<Complex<N>>> for Similarity<N, U2, Unit<Complex<N>>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Similarity<N, U2, Unit<Complex<N>>>

pub fn mul(
    self,
    rhs: Unit<Complex<N>>
) -> <Similarity<N, U2, Unit<Complex<N>>> as Mul<Unit<Complex<N>>>>::Output
[src]

impl<N, D, R> Mul<Translation<N, D>> for Isometry<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Isometry<N, D, R>

pub fn mul(
    self,
    right: Translation<N, D>
) -> <Isometry<N, D, R> as Mul<Translation<N, D>>>::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, N> Mul<Point<N, U2>> for &'a Unit<Complex<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Point<N, U2>

pub fn mul(
    self,
    rhs: Point<N, U2>
) -> <&'a Unit<Complex<N>> as Mul<Point<N, U2>>>::Output
[src]

impl<N, R1, C1, D2, SA> Mul<Rotation<N, D2>> for Matrix<N, R1, C1, SA> where
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N>,
    D2: DimName,
    R1: Dim,
    C1: Dim,
    SA: Storage<N, R1, C1>,
    DefaultAllocator: Allocator<N, R1, C1>,
    DefaultAllocator: Allocator<N, D2, D2>,
    DefaultAllocator: Allocator<N, R1, D2>,
    DefaultAllocator: Allocator<N, R1, D2>,
    ShapeConstraint: AreMultipliable<R1, C1, D2, D2>, 
[src]

type Output = Matrix<N, R1, D2, <DefaultAllocator as Allocator<N, R1, D2>>::Buffer>

pub fn mul(
    self,
    right: Rotation<N, D2>
) -> <Matrix<N, R1, C1, SA> as Mul<Rotation<N, D2>>>::Output
[src]

impl<'a, N, D, C> Mul<Translation<N, D>> for &'a Transform<N, D, C> where
    C: TCategoryMul<TAffine>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, U1>, 
[src]

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

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

impl<'b, N, D> Mul<&'b Similarity<N, D, Rotation<N, D>>> for Rotation<N, D> where
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Similarity<N, D, Rotation<N, D>>

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

impl<'a, 'b, N> Mul<&'b Unit<Complex<N>>> for &'a Similarity<N, U2, Unit<Complex<N>>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Similarity<N, U2, Unit<Complex<N>>>

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

impl<'a, 'b, N, D> Mul<&'b Translation<N, D>> for &'a Translation<N, D> where
    N: Scalar + ClosedAdd<N>,
    D: DimName,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: SameShapeAllocator<N, D, U1, D, U1>,
    ShapeConstraint: SameNumberOfRows<D, D>,
    ShapeConstraint: SameNumberOfColumns<U1, U1>,
    <ShapeConstraint as SameNumberOfRows<D, D>>::Representative == D, 
[src]

type Output = Translation<N, D>

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

impl<'a, N, D> Mul<Rotation<N, D>> for &'a Translation<N, D> where
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

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

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

impl<'a, 'b, N, D, R> Mul<&'b Translation<N, D>> for &'a Isometry<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Isometry<N, D, R>

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

impl<'a, N> Mul<Rotation<N, U3>> for &'a Unit<Quaternion<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U3>, 
[src]

type Output = Unit<Quaternion<N>>

pub fn mul(
    self,
    rhs: Rotation<N, U3>
) -> <&'a Unit<Quaternion<N>> as Mul<Rotation<N, U3>>>::Output
[src]

impl<N, SB> Mul<Unit<Matrix<N, U3, U1, SB>>> for Unit<Quaternion<N>> where
    N: SimdRealField,
    SB: Storage<N, U3, U1>,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Unit<Matrix<N, U3, U1, <DefaultAllocator as Allocator<N, U3, U1>>::Buffer>>

pub fn mul(
    self,
    rhs: Unit<Matrix<N, U3, U1, SB>>
) -> <Unit<Quaternion<N>> as Mul<Unit<Matrix<N, U3, U1, SB>>>>::Output
[src]

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

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

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

impl<N, D, C, R> Mul<Transform<N, D, C>> for Similarity<N, D, R> where
    C: TCategoryMul<TAffine>,
    R: SubsetOf<Matrix<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output, <DefaultAllocator as Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>>::Buffer>>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, <D as DimNameAdd<U1>>::Output>, 
[src]

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

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

impl<'b, N, D> Mul<&'b Isometry<N, D, Rotation<N, D>>> for Rotation<N, D> where
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

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

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

impl<D> Mul<Point<u32, D>> for u32 where
    D: DimName,
    DefaultAllocator: Allocator<u32, D, U1>, 
[src]

type Output = Point<u32, D>

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

impl<'b, N> Mul<&'b Unit<Quaternion<N>>> for Unit<Quaternion<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

type Output = Unit<Quaternion<N>>

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

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

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

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

impl<N, D, R> Mul<Isometry<N, D, R>> for Isometry<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Isometry<N, D, R>

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

impl<N, D, R> Mul<Point<N, D>> for Isometry<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Point<N, D>

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

impl<'b, N, D, R> Mul<&'b Point<N, D>> for Isometry<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Point<N, D>

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

impl<'b, N, D> Mul<&'b Rotation<N, D>> for Rotation<N, D> where
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N>,
    D: DimName,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, D>, 
[src]

type Output = Rotation<N, D>

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

impl<N> Mul<Unit<Complex<N>>> for Unit<Complex<N>> where
    N: SimdRealField, 
[src]

type Output = Unit<Complex<N>>

pub fn mul(self, rhs: Unit<Complex<N>>) -> Unit<Complex<N>>[src]

impl<'a, 'b, N> Mul<&'b Unit<Complex<N>>> for &'a Isometry<N, U2, Unit<Complex<N>>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Isometry<N, U2, Unit<Complex<N>>>

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

impl<N, D, R> Mul<Point<N, D>> for Similarity<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Point<N, D>

pub fn mul(
    self,
    right: Point<N, D>
) -> <Similarity<N, D, R> as Mul<Point<N, D>>>::Output
[src]

impl<'a, N, D1, R2, C2, SB> Mul<Matrix<N, R2, C2, SB>> for &'a Rotation<N, D1> where
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N>,
    R2: Dim,
    C2: Dim,
    D1: DimName,
    SB: Storage<N, R2, C2>,
    DefaultAllocator: Allocator<N, D1, D1>,
    DefaultAllocator: Allocator<N, R2, C2>,
    DefaultAllocator: Allocator<N, D1, C2>,
    DefaultAllocator: Allocator<N, D1, C2>,
    ShapeConstraint: AreMultipliable<D1, D1, R2, C2>, 
[src]

type Output = Matrix<N, D1, C2, <DefaultAllocator as Allocator<N, D1, C2>>::Buffer>

pub fn mul(
    self,
    right: Matrix<N, R2, C2, SB>
) -> <&'a Rotation<N, D1> as Mul<Matrix<N, R2, C2, SB>>>::Output
[src]

impl<'a, N, D, C> Mul<Point<N, D>> for &'a Transform<N, D, C> where
    C: TCategory,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, U1>,
    DefaultAllocator: Allocator<N, D, D>, 
[src]

type Output = Point<N, D>

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

impl<'a, 'b, N> Mul<&'b Unit<Complex<N>>> for &'a Rotation<N, U2> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U2>, 
[src]

type Output = Unit<Complex<N>>

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

impl<N> Mul<Unit<Quaternion<N>>> for Similarity<N, U3, Unit<Quaternion<N>>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Similarity<N, U3, Unit<Quaternion<N>>>

pub fn mul(
    self,
    rhs: Unit<Quaternion<N>>
) -> <Similarity<N, U3, Unit<Quaternion<N>>> as Mul<Unit<Quaternion<N>>>>::Output
[src]

impl<D> Mul<Point<i8, D>> for i8 where
    D: DimName,
    DefaultAllocator: Allocator<i8, D, U1>, 
[src]

type Output = Point<i8, D>

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

impl<'b, N> Mul<&'b Translation<N, U3>> for Unit<Quaternion<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Isometry<N, U3, Unit<Quaternion<N>>>

pub fn mul(
    self,
    right: &'b Translation<N, U3>
) -> <Unit<Quaternion<N>> as Mul<&'b Translation<N, U3>>>::Output
[src]

impl<N, S> Mul<Unit<Matrix<N, U2, U1, S>>> for Unit<Complex<N>> where
    S: Storage<N, U2, U1>,
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Unit<Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>>

pub fn mul(
    self,
    rhs: Unit<Matrix<N, U2, U1, S>>
) -> <Unit<Complex<N>> as Mul<Unit<Matrix<N, U2, U1, S>>>>::Output
[src]

impl<'a, 'b, N, D, C> Mul<&'b Transform<N, D, C>> for &'a Rotation<N, D> where
    C: TCategoryMul<TAffine>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, <D as DimNameAdd<U1>>::Output>, 
[src]

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

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

impl<'a, 'b, N, R1, C1, D2, SA> Mul<&'b Rotation<N, D2>> for &'a Matrix<N, R1, C1, SA> where
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N>,
    D2: DimName,
    R1: Dim,
    C1: Dim,
    SA: Storage<N, R1, C1>,
    DefaultAllocator: Allocator<N, R1, C1>,
    DefaultAllocator: Allocator<N, D2, D2>,
    DefaultAllocator: Allocator<N, R1, D2>,
    DefaultAllocator: Allocator<N, R1, D2>,
    ShapeConstraint: AreMultipliable<R1, C1, D2, D2>, 
[src]

type Output = Matrix<N, R1, D2, <DefaultAllocator as Allocator<N, R1, D2>>::Buffer>

pub fn mul(
    self,
    right: &'b Rotation<N, D2>
) -> <&'a Matrix<N, R1, C1, SA> as Mul<&'b Rotation<N, D2>>>::Output
[src]

impl<'a, N> Mul<Rotation<N, U2>> for &'a Unit<Complex<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U2>, 
[src]

type Output = Unit<Complex<N>>

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

impl<'a, N, D> Mul<Translation<N, D>> for &'a Translation<N, D> where
    N: Scalar + ClosedAdd<N>,
    D: DimName,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: SameShapeAllocator<N, D, U1, D, U1>,
    ShapeConstraint: SameNumberOfRows<D, D>,
    ShapeConstraint: SameNumberOfColumns<U1, U1>,
    <ShapeConstraint as SameNumberOfRows<D, D>>::Representative == D, 
[src]

type Output = Translation<N, D>

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

impl<'b, N, D> Mul<&'b Translation<N, D>> for Translation<N, D> where
    N: Scalar + ClosedAdd<N>,
    D: DimName,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: SameShapeAllocator<N, D, U1, D, U1>,
    ShapeConstraint: SameNumberOfRows<D, D>,
    ShapeConstraint: SameNumberOfColumns<U1, U1>,
    <ShapeConstraint as SameNumberOfRows<D, D>>::Representative == D, 
[src]

type Output = Translation<N, D>

pub fn mul(
    self,
    right: &'b Translation<N, D>
) -> <Translation<N, D> as Mul<&'b Translation<N, D>>>::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<'a, 'b, N, D, R> Mul<&'b Similarity<N, D, R>> for &'a Similarity<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Similarity<N, D, R>

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

impl<'b, D> Mul<&'b Point<u32, D>> for u32 where
    D: DimName,
    DefaultAllocator: Allocator<u32, D, U1>, 
[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<'b, N, R1, C1, R2, C2, SA, SB> Mul<&'b Matrix<N, R2, C2, SB>> for Matrix<N, R1, C1, SA> where
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N>,
    R2: Dim,
    C2: Dim,
    R1: Dim,
    C1: Dim,
    SA: Storage<N, R1, C1>,
    SB: Storage<N, R2, C2>,
    DefaultAllocator: Allocator<N, R1, C2>,
    ShapeConstraint: AreMultipliable<R1, C1, R2, C2>, 
[src]

type Output = Matrix<N, R1, C2, <DefaultAllocator as Allocator<N, R1, C2>>::Buffer>

pub fn mul(
    self,
    rhs: &'b Matrix<N, R2, C2, SB>
) -> <Matrix<N, R1, C1, SA> as Mul<&'b Matrix<N, R2, C2, SB>>>::Output
[src]

impl<'a, N, D, CA, CB> Mul<Transform<N, D, CB>> for &'a Transform<N, D, CA> where
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    CA: TCategoryMul<CB>,
    CB: TCategory,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>, 
[src]

type Output = Transform<N, D, <CA as TCategoryMul<CB>>::Representative>

pub fn mul(
    self,
    rhs: Transform<N, D, CB>
) -> <&'a Transform<N, D, CA> as Mul<Transform<N, D, CB>>>::Output
[src]

impl<'a, 'b, N, S> Mul<&'b Unit<Matrix<N, U2, U1, S>>> for &'a Unit<Complex<N>> where
    S: Storage<N, U2, U1>,
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Unit<Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>>

pub fn mul(
    self,
    rhs: &'b Unit<Matrix<N, U2, U1, S>>
) -> <&'a Unit<Complex<N>> as Mul<&'b Unit<Matrix<N, U2, U1, S>>>>::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, N, D, R> Mul<Translation<N, D>> for &'a Similarity<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Similarity<N, D, R>

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

impl<D> Mul<Point<u8, D>> for u8 where
    D: DimName,
    DefaultAllocator: Allocator<u8, D, U1>, 
[src]

type Output = Point<u8, D>

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

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

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

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

impl<'b, N> Mul<&'b Similarity<N, U2, Unit<Complex<N>>>> for Unit<Complex<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Similarity<N, U2, Unit<Complex<N>>>

pub fn mul(
    self,
    rhs: &'b Similarity<N, U2, Unit<Complex<N>>>
) -> <Unit<Complex<N>> as Mul<&'b Similarity<N, U2, Unit<Complex<N>>>>>::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<N, SB> Mul<Matrix<N, U3, U1, SB>> for Unit<Quaternion<N>> where
    N: SimdRealField,
    SB: Storage<N, U3, U1>,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Matrix<N, U3, U1, <DefaultAllocator as Allocator<N, U3, U1>>::Buffer>

pub fn mul(
    self,
    rhs: Matrix<N, U3, U1, SB>
) -> <Unit<Quaternion<N>> as Mul<Matrix<N, U3, U1, SB>>>::Output
[src]

impl<'a, 'b, N> Mul<&'b Translation<N, U2>> for &'a Unit<Complex<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Isometry<N, U2, Unit<Complex<N>>>

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

impl<N, D, R> Mul<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>> for Similarity<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>

pub fn mul(
    self,
    right: Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>
) -> <Similarity<N, D, R> as Mul<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>>::Output
[src]

impl<'a, 'b, N, D> Mul<&'b Rotation<N, D>> for &'a Rotation<N, D> where
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N>,
    D: DimName,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, D>, 
[src]

type Output = Rotation<N, D>

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

impl<N> Mul<Quaternion<N>> for Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

type Output = Quaternion<N>

pub fn mul(
    self,
    rhs: Quaternion<N>
) -> <Quaternion<N> as Mul<Quaternion<N>>>::Output
[src]

impl<'a, N, C> Mul<Transform<N, U3, C>> for &'a Unit<Quaternion<N>> where
    C: TCategoryMul<TAffine>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U4>,
    DefaultAllocator: Allocator<N, U4, U4>, 
[src]

type Output = Transform<N, U3, <C as TCategoryMul<TAffine>>::Representative>

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

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

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

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

impl<N> Mul<Unit<Complex<N>>> for Rotation<N, U2> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U2>, 
[src]

type Output = Unit<Complex<N>>

pub fn mul(
    self,
    rhs: Unit<Complex<N>>
) -> <Rotation<N, U2> as Mul<Unit<Complex<N>>>>::Output
[src]

impl<'a, N, D, R> Mul<Unit<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>> for &'a Isometry<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Unit<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>

pub fn mul(
    self,
    right: Unit<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>
) -> <&'a Isometry<N, D, R> as Mul<Unit<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>>>::Output
[src]

impl<'a, N, D, R> Mul<Translation<N, D>> for &'a Isometry<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Isometry<N, D, R>

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

impl<'a, N> Mul<Unit<Complex<N>>> for &'a Isometry<N, U2, Unit<Complex<N>>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Isometry<N, U2, Unit<Complex<N>>>

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

impl<'a, N, D, C> Mul<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>> for &'a Transform<N, D, C> where
    C: TCategory,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, U1>, 
[src]

type Output = Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>

pub fn mul(
    self,
    rhs: Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>
) -> <&'a Transform<N, D, C> as Mul<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>>::Output
[src]

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

type Output = Unit<Complex<N>>

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

impl<N, C> Mul<Transform<N, U3, C>> for Unit<Quaternion<N>> where
    C: TCategoryMul<TAffine>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U4>,
    DefaultAllocator: Allocator<N, U4, U4>, 
[src]

type Output = Transform<N, U3, <C as TCategoryMul<TAffine>>::Representative>

pub fn mul(
    self,
    rhs: Transform<N, U3, C>
) -> <Unit<Quaternion<N>> as Mul<Transform<N, U3, C>>>::Output
[src]

impl<'a, N, R1, C1, R2, C2, SA, SB> Mul<Matrix<N, R2, C2, SB>> for &'a Matrix<N, R1, C1, SA> where
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N>,
    R2: Dim,
    C2: Dim,
    R1: Dim,
    C1: Dim,
    SA: Storage<N, R1, C1>,
    SB: Storage<N, R2, C2>,
    DefaultAllocator: Allocator<N, R1, C2>,
    ShapeConstraint: AreMultipliable<R1, C1, R2, C2>, 
[src]

type Output = Matrix<N, R1, C2, <DefaultAllocator as Allocator<N, R1, C2>>::Buffer>

pub fn mul(
    self,
    rhs: Matrix<N, R2, C2, SB>
) -> <&'a Matrix<N, R1, C1, SA> as Mul<Matrix<N, R2, C2, SB>>>::Output
[src]

impl<'a, 'b, N> Mul<&'b Rotation<N, U2>> for &'a Unit<Complex<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U2>, 
[src]

type Output = Unit<Complex<N>>

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

impl<N, D, R> Mul<Similarity<N, D, R>> for Similarity<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Similarity<N, D, R>

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

impl<'a, 'b, N, D, R> Mul<&'b Isometry<N, D, R>> for &'a Isometry<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Isometry<N, D, R>

pub fn mul(
    self,
    rhs: &'b Isometry<N, D, R>
) -> <&'a Isometry<N, D, R> as Mul<&'b Isometry<N, D, R>>>::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<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, N, D, S> Mul<Unit<Matrix<N, D, U1, S>>> for &'a Rotation<N, D> where
    S: Storage<N, D, U1>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N>,
    D: DimName,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    ShapeConstraint: AreMultipliable<D, D, D, U1>, 
[src]

type Output = Unit<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>

pub fn mul(
    self,
    right: Unit<Matrix<N, D, U1, S>>
) -> <&'a Rotation<N, D> as Mul<Unit<Matrix<N, D, U1, S>>>>::Output
[src]

impl<'a, N, D, R> Mul<Isometry<N, D, R>> for &'a Similarity<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Similarity<N, D, R>

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

impl<N> Mul<Unit<Complex<N>>> for Translation<N, U2> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Isometry<N, U2, Unit<Complex<N>>>

pub fn mul(
    self,
    right: Unit<Complex<N>>
) -> <Translation<N, U2> as Mul<Unit<Complex<N>>>>::Output
[src]

impl<'b, N> Mul<&'b Unit<Quaternion<N>>> for Rotation<N, U3> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U3, U3>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

type Output = Unit<Quaternion<N>>

pub fn mul(
    self,
    rhs: &'b Unit<Quaternion<N>>
) -> <Rotation<N, U3> as Mul<&'b Unit<Quaternion<N>>>>::Output
[src]

impl<'a, N, D, C> Mul<Transform<N, D, C>> for &'a Rotation<N, D> where
    C: TCategoryMul<TAffine>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, <D as DimNameAdd<U1>>::Output>, 
[src]

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

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

impl<'b, N, D, C> Mul<&'b Rotation<N, D>> for Transform<N, D, C> where
    C: TCategoryMul<TAffine>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, D>, 
[src]

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

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

impl<N, D, C> Mul<Transform<N, D, C>> for Translation<N, D> where
    C: TCategoryMul<TAffine>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, <D as DimNameAdd<U1>>::Output>, 
[src]

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

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

impl<'a, 'b, N> Mul<&'b Point<N, U3>> for &'a Unit<Quaternion<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Point<N, U3>

pub fn mul(
    self,
    rhs: &'b Point<N, U3>
) -> <&'a Unit<Quaternion<N>> as Mul<&'b Point<N, U3>>>::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<'a, N> Mul<Translation<N, U3>> for &'a Unit<Quaternion<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Isometry<N, U3, Unit<Quaternion<N>>>

pub fn mul(
    self,
    right: Translation<N, U3>
) -> <&'a Unit<Quaternion<N>> as Mul<Translation<N, U3>>>::Output
[src]

impl<N, D, R> Mul<Similarity<N, D, R>> for Translation<N, D> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Similarity<N, D, R>

pub fn mul(
    self,
    right: Similarity<N, D, R>
) -> <Translation<N, D> as Mul<Similarity<N, D, R>>>::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<'a, 'b, N, D, R> Mul<&'b Similarity<N, D, R>> for &'a Isometry<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Similarity<N, D, R>

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

impl<N, D> Mul<Rotation<N, D>> for Similarity<N, D, Rotation<N, D>> where
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Similarity<N, D, Rotation<N, D>>

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

impl<'b, N> Mul<&'b Unit<Quaternion<N>>> for Isometry<N, U3, Unit<Quaternion<N>>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Isometry<N, U3, Unit<Quaternion<N>>>

pub fn mul(
    self,
    rhs: &'b Unit<Quaternion<N>>
) -> <Isometry<N, U3, Unit<Quaternion<N>>> as Mul<&'b Unit<Quaternion<N>>>>::Output
[src]

impl<'b, N> Mul<&'b Point<N, U3>> for Unit<Quaternion<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Point<N, U3>

pub fn mul(
    self,
    rhs: &'b Point<N, U3>
) -> <Unit<Quaternion<N>> as Mul<&'b Point<N, U3>>>::Output
[src]

impl<'a, 'b, N> Mul<&'b Isometry<N, U2, Unit<Complex<N>>>> for &'a Unit<Complex<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Isometry<N, U2, Unit<Complex<N>>>

pub fn mul(
    self,
    rhs: &'b Isometry<N, U2, Unit<Complex<N>>>
) -> <&'a Unit<Complex<N>> as Mul<&'b Isometry<N, U2, Unit<Complex<N>>>>>::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<'a, 'b, N> Mul<&'b Isometry<N, U3, Unit<Quaternion<N>>>> for &'a Unit<Quaternion<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Isometry<N, U3, Unit<Quaternion<N>>>

pub fn mul(
    self,
    right: &'b Isometry<N, U3, Unit<Quaternion<N>>>
) -> <&'a Unit<Quaternion<N>> as Mul<&'b Isometry<N, U3, Unit<Quaternion<N>>>>>::Output
[src]

impl<'a, 'b, N, D> Mul<&'b Point<N, D>> for &'a Rotation<N, D> where
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N>,
    D: DimName,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    ShapeConstraint: AreMultipliable<D, D, D, U1>, 
[src]

type Output = Point<N, D>

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

impl<N, D, C, R> Mul<Transform<N, D, C>> for Isometry<N, D, R> where
    C: TCategoryMul<TAffine>,
    R: SubsetOf<Matrix<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output, <DefaultAllocator as Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>>::Buffer>>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, <D as DimNameAdd<U1>>::Output>, 
[src]

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

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

impl<'a, N, D, C> Mul<Rotation<N, D>> for &'a Transform<N, D, C> where
    C: TCategoryMul<TAffine>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, D>, 
[src]

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

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

impl<'b, D> Mul<&'b Point<u16, D>> for u16 where
    D: DimName,
    DefaultAllocator: Allocator<u16, D, U1>, 
[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<'a, N, D, R> Mul<Point<N, D>> for &'a Similarity<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Point<N, D>

pub fn mul(
    self,
    right: Point<N, D>
) -> <&'a Similarity<N, D, R> as Mul<Point<N, D>>>::Output
[src]

impl<N, D> Mul<Translation<N, D>> for Translation<N, D> where
    N: Scalar + ClosedAdd<N>,
    D: DimName,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: SameShapeAllocator<N, D, U1, D, U1>,
    ShapeConstraint: SameNumberOfRows<D, D>,
    ShapeConstraint: SameNumberOfColumns<U1, U1>,
    <ShapeConstraint as SameNumberOfRows<D, D>>::Representative == D, 
[src]

type Output = Translation<N, D>

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

impl<'b, N, D, R> Mul<&'b Isometry<N, D, R>> for Isometry<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Isometry<N, D, R>

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

impl<'a, 'b, N, R1, C1, R2, C2, SA, SB> Mul<&'b Matrix<N, R2, C2, SB>> for &'a Matrix<N, R1, C1, SA> where
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N>,
    R2: Dim,
    C2: Dim,
    R1: Dim,
    C1: Dim,
    SA: Storage<N, R1, C1>,
    SB: Storage<N, R2, C2>,
    DefaultAllocator: Allocator<N, R1, C2>,
    ShapeConstraint: AreMultipliable<R1, C1, R2, C2>, 
[src]

type Output = Matrix<N, R1, C2, <DefaultAllocator as Allocator<N, R1, C2>>::Buffer>

pub fn mul(
    self,
    rhs: &'b Matrix<N, R2, C2, SB>
) -> <&'a Matrix<N, R1, C1, SA> as Mul<&'b Matrix<N, R2, C2, SB>>>::Output
[src]

impl<'b, N, D, C> Mul<&'b Point<N, D>> for Transform<N, D, C> where
    C: TCategory,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, U1>,
    DefaultAllocator: Allocator<N, D, D>, 
[src]

type Output = Point<N, D>

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

impl<'a, 'b, N, D, C> Mul<&'b Rotation<N, D>> for &'a Transform<N, D, C> where
    C: TCategoryMul<TAffine>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, D>, 
[src]

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

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

impl<'a, N> Mul<Unit<Quaternion<N>>> for &'a Similarity<N, U3, Unit<Quaternion<N>>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Similarity<N, U3, Unit<Quaternion<N>>>

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

impl<'a, 'b, N, D, C> Mul<&'b Point<N, D>> for &'a Transform<N, D, C> where
    C: TCategory,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, U1>,
    DefaultAllocator: Allocator<N, D, D>, 
[src]

type Output = Point<N, D>

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

impl<'b, N, D> Mul<&'b Rotation<N, D>> for Similarity<N, D, Rotation<N, D>> where
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Similarity<N, D, Rotation<N, D>>

pub fn mul(
    self,
    rhs: &'b Rotation<N, D>
) -> <Similarity<N, D, Rotation<N, D>> as Mul<&'b Rotation<N, D>>>::Output
[src]

impl<D> Mul<Point<i32, D>> for i32 where
    D: DimName,
    DefaultAllocator: Allocator<i32, D, U1>, 
[src]

type Output = Point<i32, D>

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

impl<'a, 'b, N, D, R> Mul<&'b Point<N, D>> for &'a Similarity<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Point<N, D>

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

impl<D> Mul<Point<u16, D>> for u16 where
    D: DimName,
    DefaultAllocator: Allocator<u16, D, U1>, 
[src]

type Output = Point<u16, D>

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

impl<'a, N> Mul<Isometry<N, U3, Unit<Quaternion<N>>>> for &'a Unit<Quaternion<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Isometry<N, U3, Unit<Quaternion<N>>>

pub fn mul(
    self,
    right: Isometry<N, U3, Unit<Quaternion<N>>>
) -> <&'a Unit<Quaternion<N>> as Mul<Isometry<N, U3, Unit<Quaternion<N>>>>>::Output
[src]

impl<'b, N> Mul<&'b Quaternion<N>> for Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

type Output = Quaternion<N>

pub fn mul(
    self,
    rhs: &'b Quaternion<N>
) -> <Quaternion<N> as Mul<&'b Quaternion<N>>>::Output
[src]

impl<'b, N, D, R> Mul<&'b Translation<N, D>> for Isometry<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Isometry<N, D, R>

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

impl<'b, N, R1, C1, D2, SA> Mul<&'b Point<N, D2>> for Matrix<N, R1, C1, SA> where
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N>,
    D2: DimName,
    R1: DimName,
    C1: Dim,
    SA: Storage<N, R1, C1>,
    DefaultAllocator: Allocator<N, R1, C1>,
    DefaultAllocator: Allocator<N, D2, U1>,
    DefaultAllocator: Allocator<N, R1, U1>,
    ShapeConstraint: AreMultipliable<R1, C1, D2, U1>, 
[src]

type Output = Point<N, R1>

pub fn mul(
    self,
    right: &'b Point<N, D2>
) -> <Matrix<N, R1, C1, SA> as Mul<&'b Point<N, D2>>>::Output
[src]

impl<'a, 'b, N> Mul<&'b Unit<Complex<N>>> for &'a Translation<N, U2> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Isometry<N, U2, Unit<Complex<N>>>

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

impl<'b, D> Mul<&'b Point<isize, D>> for isize where
    D: DimName,
    DefaultAllocator: Allocator<isize, D, U1>, 
[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<N> Mul<Similarity<N, U3, Unit<Quaternion<N>>>> for Unit<Quaternion<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Similarity<N, U3, Unit<Quaternion<N>>>

pub fn mul(
    self,
    right: Similarity<N, U3, Unit<Quaternion<N>>>
) -> <Unit<Quaternion<N>> as Mul<Similarity<N, U3, Unit<Quaternion<N>>>>>::Output
[src]

impl<'a, 'b, N, D1, R2, C2, SB> Mul<&'b Matrix<N, R2, C2, SB>> for &'a Rotation<N, D1> where
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N>,
    R2: Dim,
    C2: Dim,
    D1: DimName,
    SB: Storage<N, R2, C2>,
    DefaultAllocator: Allocator<N, D1, D1>,
    DefaultAllocator: Allocator<N, R2, C2>,
    DefaultAllocator: Allocator<N, D1, C2>,
    DefaultAllocator: Allocator<N, D1, C2>,
    ShapeConstraint: AreMultipliable<D1, D1, R2, C2>, 
[src]

type Output = Matrix<N, D1, C2, <DefaultAllocator as Allocator<N, D1, C2>>::Buffer>

pub fn mul(
    self,
    right: &'b Matrix<N, R2, C2, SB>
) -> <&'a Rotation<N, D1> as Mul<&'b Matrix<N, R2, C2, SB>>>::Output
[src]

impl<'b, N, D> Mul<&'b Translation<N, D>> for Rotation<N, D> where
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

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

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

impl<'a, N, S> Mul<Unit<Matrix<N, U2, U1, S>>> for &'a Unit<Complex<N>> where
    S: Storage<N, U2, U1>,
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Unit<Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>>

pub fn mul(
    self,
    rhs: Unit<Matrix<N, U2, U1, S>>
) -> <&'a Unit<Complex<N>> as Mul<Unit<Matrix<N, U2, U1, S>>>>::Output
[src]

impl<N, D, C> Mul<Rotation<N, D>> for Transform<N, D, C> where
    C: TCategoryMul<TAffine>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, D>, 
[src]

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

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

impl<'b, N, C> Mul<&'b Transform<N, U3, C>> for Unit<Quaternion<N>> where
    C: TCategoryMul<TAffine>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U4>,
    DefaultAllocator: Allocator<N, U4, U4>, 
[src]

type Output = Transform<N, U3, <C as TCategoryMul<TAffine>>::Representative>

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

impl<N> Mul<Translation<N, U3>> for Unit<Quaternion<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Isometry<N, U3, Unit<Quaternion<N>>>

pub fn mul(
    self,
    right: Translation<N, U3>
) -> <Unit<Quaternion<N>> as Mul<Translation<N, U3>>>::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, N, D, S> Mul<&'b Unit<Matrix<N, D, U1, S>>> for Rotation<N, D> where
    S: Storage<N, D, U1>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N>,
    D: DimName,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    ShapeConstraint: AreMultipliable<D, D, D, U1>, 
[src]

type Output = Unit<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>

pub fn mul(
    self,
    right: &'b Unit<Matrix<N, D, U1, S>>
) -> <Rotation<N, D> as Mul<&'b Unit<Matrix<N, D, U1, S>>>>::Output
[src]

impl<'a, 'b, N, D> Mul<&'b Isometry<N, D, Rotation<N, D>>> for &'a Rotation<N, D> where
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

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

pub fn mul(
    self,
    right: &'b Isometry<N, D, Rotation<N, D>>
) -> <&'a Rotation<N, D> as Mul<&'b Isometry<N, D, Rotation<N, D>>>>::Output
[src]

impl<'a, N, D> Mul<Isometry<N, D, Rotation<N, D>>> for &'a Rotation<N, D> where
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

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

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

impl<N> Mul<Rotation<N, U3>> for Unit<Quaternion<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U3>, 
[src]

type Output = Unit<Quaternion<N>>

pub fn mul(
    self,
    rhs: Rotation<N, U3>
) -> <Unit<Quaternion<N>> as Mul<Rotation<N, U3>>>::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<'a, N> Mul<Unit<Quaternion<N>>> for &'a Rotation<N, U3> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U3, U3>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

type Output = Unit<Quaternion<N>>

pub fn mul(
    self,
    rhs: Unit<Quaternion<N>>
) -> <&'a Rotation<N, U3> as Mul<Unit<Quaternion<N>>>>::Output
[src]

impl<'a, 'b, N, D, R> Mul<&'b Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>> for &'a Isometry<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>

pub fn mul(
    self,
    right: &'b Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>
) -> <&'a Isometry<N, D, R> as Mul<&'b Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>>::Output
[src]

impl<N> Mul<Unit<Quaternion<N>>> for Translation<N, U3> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Isometry<N, U3, Unit<Quaternion<N>>>

pub fn mul(
    self,
    right: Unit<Quaternion<N>>
) -> <Translation<N, U3> as Mul<Unit<Quaternion<N>>>>::Output
[src]

impl<'b, N, D, C> Mul<&'b Translation<N, D>> for Transform<N, D, C> where
    C: TCategoryMul<TAffine>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, U1>, 
[src]

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

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

impl<'a, 'b, N, D, R> Mul<&'b Isometry<N, D, R>> for &'a Translation<N, D> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Isometry<N, D, R>

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

impl<N, D> Mul<Rotation<N, D>> for Rotation<N, D> where
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N>,
    D: DimName,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, D>, 
[src]

type Output = Rotation<N, D>

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

impl<D> Mul<Point<f32, D>> for f32 where
    D: DimName,
    DefaultAllocator: Allocator<f32, D, U1>, 
[src]

type Output = Point<f32, D>

pub fn mul(self, right: Point<f32, D>) -> <f32 as Mul<Point<f32, D>>>::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<'a, N, D, R> Mul<Point<N, D>> for &'a Isometry<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Point<N, D>

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

impl<'b, N, D, R> Mul<&'b Isometry<N, D, R>> for Translation<N, D> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Isometry<N, D, R>

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

impl<'a, 'b, N, D, CA, CB> Mul<&'b Transform<N, D, CB>> for &'a Transform<N, D, CA> where
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    CA: TCategoryMul<CB>,
    CB: TCategory,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>, 
[src]

type Output = Transform<N, D, <CA as TCategoryMul<CB>>::Representative>

pub fn mul(
    self,
    rhs: &'b Transform<N, D, CB>
) -> <&'a Transform<N, D, CA> as Mul<&'b Transform<N, D, CB>>>::Output
[src]

impl<'a, 'b, N, D, R> Mul<&'b Isometry<N, D, R>> for &'a Similarity<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Similarity<N, D, R>

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

impl<'a, 'b, N, C> Mul<&'b Transform<N, U3, C>> for &'a Unit<Quaternion<N>> where
    C: TCategoryMul<TAffine>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U4>,
    DefaultAllocator: Allocator<N, U4, U4>, 
[src]

type Output = Transform<N, U3, <C as TCategoryMul<TAffine>>::Representative>

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

impl<'a, 'b, N, C> Mul<&'b Unit<Quaternion<N>>> for &'a Transform<N, U3, C> where
    C: TCategoryMul<TAffine>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    DefaultAllocator: Allocator<N, U4, U4>,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

type Output = Transform<N, U3, <C as TCategoryMul<TAffine>>::Representative>

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

impl<N, D> Mul<Isometry<N, D, Rotation<N, D>>> for Rotation<N, D> where
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

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

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

impl<'b, D> Mul<&'b Point<u64, D>> for u64 where
    D: DimName,
    DefaultAllocator: Allocator<u64, D, U1>, 
[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<N, D> Mul<Point<N, D>> for Translation<N, D> where
    N: Scalar + ClosedAdd<N>,
    D: DimName,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: SameShapeAllocator<N, D, U1, D, U1>,
    ShapeConstraint: SameNumberOfRows<D, D>,
    ShapeConstraint: SameNumberOfColumns<U1, U1>,
    <ShapeConstraint as SameNumberOfRows<D, D>>::Representative == D, 
[src]

type Output = Point<N, D>

pub fn mul(
    self,
    right: Point<N, D>
) -> <Translation<N, D> as Mul<Point<N, D>>>::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<'b, N, D, R> Mul<&'b Unit<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>> for Isometry<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Unit<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>

pub fn mul(
    self,
    right: &'b Unit<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>
) -> <Isometry<N, D, R> as Mul<&'b Unit<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>>>::Output
[src]

impl<'a, 'b, N, D> Mul<&'b Translation<N, D>> for &'a Rotation<N, D> where
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

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

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

impl<'a, 'b, N, D, R> Mul<&'b Point<N, D>> for &'a Isometry<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Point<N, D>

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

impl<N> Mul<Similarity<N, U2, Unit<Complex<N>>>> for Unit<Complex<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Similarity<N, U2, Unit<Complex<N>>>

pub fn mul(
    self,
    rhs: Similarity<N, U2, Unit<Complex<N>>>
) -> <Unit<Complex<N>> as Mul<Similarity<N, U2, Unit<Complex<N>>>>>::Output
[src]

impl<'b, N> Mul<&'b Unit<Complex<N>>> for Rotation<N, U2> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U2>, 
[src]

type Output = Unit<Complex<N>>

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

impl<'a, 'b, N, S> Mul<&'b Matrix<N, U2, U1, S>> for &'a Unit<Complex<N>> where
    S: Storage<N, U2, U1>,
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>

pub fn mul(
    self,
    rhs: &'b Matrix<N, U2, U1, S>
) -> <&'a Unit<Complex<N>> as Mul<&'b Matrix<N, U2, U1, S>>>::Output
[src]

impl<'b, N, D, R> Mul<&'b Isometry<N, D, R>> for Similarity<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Similarity<N, D, R>

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

impl<'b, N, D, R> Mul<&'b Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>> for Isometry<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>

pub fn mul(
    self,
    right: &'b Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>
) -> <Isometry<N, D, R> as Mul<&'b Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>>::Output
[src]

impl<'a, N, C> Mul<Unit<Quaternion<N>>> for &'a Transform<N, U3, C> where
    C: TCategoryMul<TAffine>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    DefaultAllocator: Allocator<N, U4, U4>,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

type Output = Transform<N, U3, <C as TCategoryMul<TAffine>>::Representative>

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

impl<'a, N> Mul<Similarity<N, U3, Unit<Quaternion<N>>>> for &'a Unit<Quaternion<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Similarity<N, U3, Unit<Quaternion<N>>>

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

impl<'a, N, D> Mul<Similarity<N, D, Rotation<N, D>>> for &'a Rotation<N, D> where
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Similarity<N, D, Rotation<N, D>>

pub fn mul(
    self,
    right: Similarity<N, D, Rotation<N, D>>
) -> <&'a Rotation<N, D> as Mul<Similarity<N, D, Rotation<N, D>>>>::Output
[src]

impl<N, D, R> Mul<Similarity<N, D, R>> for Isometry<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Similarity<N, D, R>

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

impl<N, D> Mul<Translation<N, D>> for Rotation<N, D> where
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

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

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

impl<N, D, C> Mul<Transform<N, D, C>> for Rotation<N, D> where
    C: TCategoryMul<TAffine>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, <D as DimNameAdd<U1>>::Output>, 
[src]

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

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

impl<'a, 'b, N> Mul<&'b Unit<Quaternion<N>>> for &'a Rotation<N, U3> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U3, U3>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

type Output = Unit<Quaternion<N>>

pub fn mul(
    self,
    rhs: &'b Unit<Quaternion<N>>
) -> <&'a Rotation<N, U3> as Mul<&'b Unit<Quaternion<N>>>>::Output
[src]

impl<N, D> Mul<Rotation<N, D>> for Isometry<N, D, Rotation<N, D>> where
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

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

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

impl<'b, N> Mul<&'b Similarity<N, U3, Unit<Quaternion<N>>>> for Unit<Quaternion<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Similarity<N, U3, Unit<Quaternion<N>>>

pub fn mul(
    self,
    right: &'b Similarity<N, U3, Unit<Quaternion<N>>>
) -> <Unit<Quaternion<N>> as Mul<&'b Similarity<N, U3, Unit<Quaternion<N>>>>>::Output
[src]

impl<'a, N> Mul<Unit<Complex<N>>> for &'a Rotation<N, U2> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U2>, 
[src]

type Output = Unit<Complex<N>>

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

impl<'b, N, D, R> Mul<&'b Similarity<N, D, R>> for Similarity<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Similarity<N, D, R>

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

impl<'a, N> Mul<Quaternion<N>> for &'a Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

type Output = Quaternion<N>

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

impl<'b, N> Mul<&'b Translation<N, U2>> for Unit<Complex<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Isometry<N, U2, Unit<Complex<N>>>

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

impl<N> Mul<Isometry<N, U2, Unit<Complex<N>>>> for Unit<Complex<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Isometry<N, U2, Unit<Complex<N>>>

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

impl<'b, N, SB> Mul<&'b Unit<Matrix<N, U3, U1, SB>>> for Unit<Quaternion<N>> where
    N: SimdRealField,
    SB: Storage<N, U3, U1>,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Unit<Matrix<N, U3, U1, <DefaultAllocator as Allocator<N, U3, U1>>::Buffer>>

pub fn mul(
    self,
    rhs: &'b Unit<Matrix<N, U3, U1, SB>>
) -> <Unit<Quaternion<N>> as Mul<&'b Unit<Matrix<N, U3, U1, SB>>>>::Output
[src]

impl<'a, N> Mul<Unit<Quaternion<N>>> for &'a Translation<N, U3> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Isometry<N, U3, Unit<Quaternion<N>>>

pub fn mul(
    self,
    right: Unit<Quaternion<N>>
) -> <&'a Translation<N, U3> as Mul<Unit<Quaternion<N>>>>::Output
[src]

impl<'b, N, D1, R2, C2, SB> Mul<&'b Matrix<N, R2, C2, SB>> for Rotation<N, D1> where
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N>,
    R2: Dim,
    C2: Dim,
    D1: DimName,
    SB: Storage<N, R2, C2>,
    DefaultAllocator: Allocator<N, D1, D1>,
    DefaultAllocator: Allocator<N, R2, C2>,
    DefaultAllocator: Allocator<N, D1, C2>,
    DefaultAllocator: Allocator<N, D1, C2>,
    ShapeConstraint: AreMultipliable<D1, D1, R2, C2>, 
[src]

type Output = Matrix<N, D1, C2, <DefaultAllocator as Allocator<N, D1, C2>>::Buffer>

pub fn mul(
    self,
    right: &'b Matrix<N, R2, C2, SB>
) -> <Rotation<N, D1> as Mul<&'b Matrix<N, R2, C2, SB>>>::Output
[src]

impl<'b, D> Mul<&'b Point<i8, D>> for i8 where
    D: DimName,
    DefaultAllocator: Allocator<i8, D, U1>, 
[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, N> Mul<&'b Unit<Quaternion<N>>> for Similarity<N, U3, Unit<Quaternion<N>>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Similarity<N, U3, Unit<Quaternion<N>>>

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

impl<'b, D> Mul<&'b Point<u8, D>> for u8 where
    D: DimName,
    DefaultAllocator: Allocator<u8, D, U1>, 
[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<D> Mul<Point<i64, D>> for i64 where
    D: DimName,
    DefaultAllocator: Allocator<i64, D, U1>, 
[src]

type Output = Point<i64, D>

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

impl<N, D, S> Mul<Unit<Matrix<N, D, U1, S>>> for Rotation<N, D> where
    S: Storage<N, D, U1>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N>,
    D: DimName,
    DefaultAllocator: Allocator<N, D, D>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    ShapeConstraint: AreMultipliable<D, D, D, U1>, 
[src]

type Output = Unit<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>

pub fn mul(
    self,
    right: Unit<Matrix<N, D, U1, S>>
) -> <Rotation<N, D> as Mul<Unit<Matrix<N, D, U1, S>>>>::Output
[src]

impl<'a, N> Mul<Unit<Complex<N>>> for &'a Unit<Complex<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField, 
[src]

type Output = Unit<Complex<N>>

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

impl<'a, N, R1, C1, D2, SA> Mul<Point<N, D2>> for &'a Matrix<N, R1, C1, SA> where
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N>,
    D2: DimName,
    R1: DimName,
    C1: Dim,
    SA: Storage<N, R1, C1>,
    DefaultAllocator: Allocator<N, R1, C1>,
    DefaultAllocator: Allocator<N, D2, U1>,
    DefaultAllocator: Allocator<N, R1, U1>,
    ShapeConstraint: AreMultipliable<R1, C1, D2, U1>, 
[src]

type Output = Point<N, R1>

pub fn mul(
    self,
    right: Point<N, D2>
) -> <&'a Matrix<N, R1, C1, SA> as Mul<Point<N, D2>>>::Output
[src]

impl<'b, D> Mul<&'b Point<i64, D>> for i64 where
    D: DimName,
    DefaultAllocator: Allocator<i64, D, U1>, 
[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<N, D, C> Mul<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>> for Transform<N, D, C> where
    C: TCategory,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, U1>, 
[src]

type Output = Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>

pub fn mul(
    self,
    rhs: Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>
) -> <Transform<N, D, C> as Mul<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>>::Output
[src]

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

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

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

impl<'b, N, SB> Mul<&'b Matrix<N, U3, U1, SB>> for Unit<Quaternion<N>> where
    N: SimdRealField,
    SB: Storage<N, U3, U1>,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Matrix<N, U3, U1, <DefaultAllocator as Allocator<N, U3, U1>>::Buffer>

pub fn mul(
    self,
    rhs: &'b Matrix<N, U3, U1, SB>
) -> <Unit<Quaternion<N>> as Mul<&'b Matrix<N, U3, U1, SB>>>::Output
[src]

impl<'a, N> Mul<Isometry<N, U2, Unit<Complex<N>>>> for &'a Unit<Complex<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Isometry<N, U2, Unit<Complex<N>>>

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

impl<'a, N, D, R> Mul<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>> for &'a Isometry<N, D, R> where
    R: AbstractRotation<N, D>,
    N: SimdRealField,
    D: DimName,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

type Output = Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>

pub fn mul(
    self,
    right: Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>
) -> <&'a Isometry<N, D, R> as Mul<Matrix<N, D, U1, <DefaultAllocator as Allocator<N, D, U1>>::Buffer>>>::Output
[src]

impl<'a, N, D, C> Mul<Transform<N, D, C>> for &'a Translation<N, D> where
    C: TCategoryMul<TAffine>,
    N: Scalar + Zero + One + ClosedAdd<N> + ClosedMul<N> + RealField,
    D: DimNameAdd<U1>,
    DefaultAllocator: Allocator<N, D, U1>,
    DefaultAllocator: Allocator<N, <D as DimNameAdd<U1>>::Output, <D as DimNameAdd<U1>>::Output>,
    DefaultAllocator: Allocator<N, D, <D as DimNameAdd<U1>>::Output>, 
[src]

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

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

impl<'a, 'b, N, SB> Mul<&'b Matrix<N, U3, U1, SB>> for &'a Unit<Quaternion<N>> where
    N: SimdRealField,
    SB: Storage<N, U3, U1>,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Matrix<N, U3, U1, <DefaultAllocator as Allocator<N, U3, U1>>::Buffer>

pub fn mul(
    self,
    rhs: &'b Matrix<N, U3, U1, SB>
) -> <&'a Unit<Quaternion<N>> as Mul<&'b Matrix<N, U3, U1, SB>>>::Output
[src]

impl<'b, N> Mul<&'b Isometry<N, U2, Unit<Complex<N>>>> for Unit<Complex<N>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U2, U1>, 
[src]

type Output = Isometry<N, U2, Unit<Complex<N>>>

pub fn mul(
    self,
    rhs: &'b Isometry<N, U2, Unit<Complex<N>>>
) -> <Unit<Complex<N>> as Mul<&'b Isometry<N, U2, Unit<Complex<N>>>>>::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<N> Mul<Unit<Quaternion<N>>> for Isometry<N, U3, Unit<Quaternion<N>>> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U3, U1>, 
[src]

type Output = Isometry<N, U3, Unit<Quaternion<N>>>

pub fn mul(
    self,
    rhs: Unit<Quaternion<N>>
) -> <Isometry<N, U3, Unit<Quaternion<N>>> as Mul<Unit<Quaternion<N>>>>::Output
[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

Loading content...

Implementors

Loading content...