pub trait Inverse {
type Output;
// Required method
fn inverse(self) -> Self::Output;
}Expand description
Raises a number to the scalar power of -1.0
pub trait Inverse {
type Output;
// Required method
fn inverse(self) -> Self::Output;
}Raises a number to the scalar power of -1.0