(mut self, col: &str, order: CsvOrder)
| 598 | pub fn where_eq(self, col: &str, value: &str) -> Self { |
| 599 | self.add_text(CsvLogic::And, col, CsvCompare::Eq, value) |
| 600 | } |
| 601 | |
| 602 | pub fn where_ne(self, col: &str, value: &str) -> Self { |
| 603 | self.add_text(CsvLogic::And, col, CsvCompare::Ne, value) |
| 604 | } |
| 605 | |
| 606 | pub fn where_lt(self, col: &str, value: impl Into<f64>) -> Self { |
| 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 { |
no test coverage detected