pub trait Normalizable {
// Required method
fn normalize(&mut self);
// Provided methods
fn is_normal(&self) -> bool
where Self: Clone + Eq { ... }
fn eqn(&self, other: &Self) -> bool
where Self: Eq + Clone { ... }
}Expand description
A term that can be normalized