nalgebra/src/traits/inv.rs

5 lines
46 B
Rust
Raw Normal View History

2013-05-14 19:35:01 +08:00
pub trait Inv<T>
{
fn inv(&self) -> Self;
}