Reports the column types of the relation given the column types of the input relations. This method delegates to `try_col_with_input_cols`, panicking if an `Err` variant is returned.
(&self, input_types: I)
| 402 | /// This method delegates to `try_col_with_input_cols`, panicking if an `Err` |
| 403 | /// variant is returned. |
| 404 | pub fn col_with_input_cols<'a, I>(&self, input_types: I) -> Vec<ReprColumnType> |
| 405 | where |
| 406 | I: Iterator<Item = &'a Vec<ReprColumnType>>, |
| 407 | { |
| 408 | match self.try_col_with_input_cols(input_types) { |
| 409 | Ok(col_types) => col_types, |
| 410 | Err(err) => panic!("{err}"), |
| 411 | } |
| 412 | } |
| 413 | |
| 414 | /// Reports the column types of the relation given the column types of the input relations. |
| 415 | /// |
no test coverage detected