(&self, name: &str)
| 732 | let limit = self.limit.filter(|limit| *limit < rows.len()); |
| 733 | if limit == Some(0) { |
| 734 | rows.clear(); |
| 735 | } else { |
| 736 | // Decorate once: fetch the cell (and parse it for numeric |
| 737 | // sorts) per row instead of per comparison. |
| 738 | let mut keyed: Vec<(usize, &str, f64)> = rows |
| 739 | .iter() |
no test coverage detected