pub trait FloatOutBinary<RHS = Self> {
type Output;
// Required methods
fn _div(self, rhs: RHS) -> Self::Output;
fn _log(self, base: RHS) -> Self::Output;
fn _hypot(self, rhs: RHS) -> Self::Output;
}Expand description
this trait is used to perform type promotion in dynamic graph