This commit is contained in:
Quaternions 2024-08-28 10:45:44 -07:00
parent c277c31f29
commit 9ef9b5ff3f
2 changed files with 9 additions and 0 deletions

View File

@ -1,4 +1,5 @@
mod macros; mod macros;
mod traits;
mod vector; mod vector;
#[cfg(feature="fixed_wide_traits")] #[cfg(feature="fixed_wide_traits")]

View File

@ -0,0 +1,8 @@
pub trait Dot<Rhs=Self>{
type Output;
fn dot(self,rhs:Rhs)->Self::Output;
}
pub trait Transpose{
type Output;
fn transpose(self)->Self::Output;
}