(&self)
| 37 | self.columns_masks[self.header_index_map[header]][row_index] |
| 38 | } |
| 39 | fn get_num_rows(&self) -> usize { |
| 40 | self.null_column.len() |
| 41 | } |
| 42 | // Checks that the row with a given index has 0 in the null column or contains entries with the zero mask in given columns |
| 43 | fn row_has_empty_entries(&self, row_index: usize, headers: &[String]) -> bool { |
| 44 | if self.null_column[row_index] == 0 { |
no outgoing calls
no test coverage detected