(self, col: &str)
| 611 | self.add_number(CsvLogic::And, col, CsvCompare::Le, value.into()) |
| 612 | } |
| 613 | |
| 614 | pub fn where_gt(self, col: &str, value: impl Into<f64>) -> Self { |
| 615 | self.add_number(CsvLogic::And, col, CsvCompare::Gt, value.into()) |
| 616 | } |
| 617 | |
| 618 | pub fn where_ge(self, col: &str, value: impl Into<f64>) -> Self { |