(iter: I)
| 1561 | |
| 1562 | impl std::iter::Sum for CardinalityEstimate { |
| 1563 | fn sum<I: Iterator<Item = Self>>(iter: I) -> Self { |
| 1564 | iter.fold(CardinalityEstimate::from(0.0), |acc, elt| acc + elt) |
| 1565 | } |
| 1566 | } |
| 1567 | |
| 1568 | impl std::iter::Product for CardinalityEstimate { |