5 lines
87 B
Rust
Raw Normal View History

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