pub trait Invertible: Clone {
    fn invert(&mut self);

    fn inverse(&self) -> Self { ... }
}
Expand description

Oriented and reversible

Required Methods§

Inverts self

Provided Methods§

Returns the inverse.

Implementations on Foreign Types§

Implementation for the test of topological methods.

Implementors§