pub trait ExprSimplifiable: Sized {
    fn simplify<S: SimplifyInfo>(self, info: &S) -> Result<Self>;
}
Expand description

trait for types that can be simplified

Required methods

simplify this trait object using the given SimplifyInfo

Implementors