(self, col: &str, value: impl Into<f64>)
| 574 | } |
| 575 | |
| 576 | pub fn select(mut self, cols: &[&str]) -> Self { |
| 577 | self.select_cols = Some( |
| 578 | cols.iter() |
| 579 | .filter_map(|col| self.table.header_index(col)) |
| 580 | .collect(), |
| 581 | ); |
nothing calls this directly
no test coverage detected