(&self, col: usize, key: &str)
| 189 | #[inline] |
| 190 | pub fn get_by_header(&self, row: usize, header: &str) -> Option<&'static str> { |
| 191 | let col = self.header_index(header)?; |
| 192 | self.get(row, col) |
| 193 | } |
| 194 | |
| 195 | /// Returns a value for the first header with `header_hash`. |
| 196 | /// |