(self, col: &str)
| 607 | self.add_number(CsvLogic::And, col, CsvCompare::Lt, value.into()) |
| 608 | } |
| 609 | |
| 610 | pub fn where_le(self, col: &str, value: impl Into<f64>) -> Self { |
| 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 { |