(mut self, logic: CsvLogic, col: &str, values: &[&str])
| 717 | rows.push(row_idx); |
| 718 | } |
| 719 | } |
| 720 | } |
| 721 | None => { |
| 722 | for row_idx in 0..self.table.rows.len() { |
| 723 | if self.matches(row_idx) { |
| 724 | rows.push(row_idx); |
| 725 | } |
| 726 | } |
| 727 | } |
| 728 | } |
| 729 | if let Some(sort) = self.sort |
| 730 | && sort.col != INVALID_COL |
| 731 | { |
| 732 | let limit = self.limit.filter(|limit| *limit < rows.len()); |
| 733 | if limit == Some(0) { |
| 734 | rows.clear(); |
| 735 | } else { |
no test coverage detected