[go: up one dir, main page]

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

Associated Types

The resulting type after applying the fused multiply-add.

Required methods

Performs the fused multiply-add operation.

Implementations on Foreign Types

Implementors