(
&self,
func: &BinaryFunc,
left: Self::Summary,
right: Self::Summary,
)
| 527 | } |
| 528 | |
| 529 | fn binary( |
| 530 | &self, |
| 531 | func: &BinaryFunc, |
| 532 | left: Self::Summary, |
| 533 | right: Self::Summary, |
| 534 | ) -> Self::Summary { |
| 535 | self.evaluator.binary(func, left, right) |
| 536 | } |
| 537 | |
| 538 | fn variadic(&self, func: &VariadicFunc, exprs: Vec<Self::Summary>) -> Self::Summary { |
| 539 | self.evaluator.variadic(func, exprs) |
no test coverage detected