pub trait ExpressionBase {
type Output;
// Required method
fn get(&self, i: usize) -> Self::Output;
}Expand description
Base trait for all expressions
pub trait ExpressionBase {
type Output;
// Required method
fn get(&self, i: usize) -> Self::Output;
}Base trait for all expressions