fixed_wide_vectors/fixed_wide_traits/src/wide.rs

5 lines
87 B
Rust

pub trait WideMul<Rhs=Self>{
type Output;
fn wide_mul(self,rhs:Rhs)->Self::Output;
}