(mut self, col: &str, order: CsvOrder)
| 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 { |
| 619 | self.add_number(CsvLogic::And, col, CsvCompare::Ge, value.into()) |
| 620 | } |
| 621 | |
| 622 | pub fn where_contains(self, col: &str, needle: &str) -> Self { |
| 623 | self.add_contains(CsvLogic::And, col, needle) |
| 624 | } |
| 625 | |
| 626 | pub fn where_starts_with(self, col: &str, prefix: &str) -> Self { |
| 627 | self.add_starts_with(CsvLogic::And, col, prefix) |
no test coverage detected