fixed_wide_vectors/fixed_wide_traits/src/wide.rs

5 lines
87 B
Rust
Raw Normal View History

2024-08-27 00:04:41 +00:00
pub trait WideMul<Rhs=Self>{
type Output;
fn wide_mul(self,rhs:Rhs)->Self::Output;
}