5 lines
87 B
Rust
5 lines
87 B
Rust
pub trait WideMul<Rhs=Self>{
|
|
type Output;
|
|
fn wide_mul(self,rhs:Rhs)->Self::Output;
|
|
}
|