[][src]Trait ultraviolet::int::MulAdd

pub trait MulAdd<A = Self, B = Self> {
    type Output;
    fn mul_add(self, a: A, b: B) -> Self::Output;
}

Associated Types

type Output

The resulting type after applying the fused multiply-add.

Loading content...

Required methods

fn mul_add(self, a: A, b: B) -> Self::Output

Performs the fused multiply-add operation.

Loading content...

Implementations on Foreign Types

impl MulAdd<u32, u32> for u32[src]

type Output = u32

impl MulAdd<i32, i32> for i32[src]

type Output = i32

Loading content...

Implementors

Loading content...