Wrap the given `exprs` (with `cols`) into [`HumanizedExpr`] with the current `mode`.
(
&self,
exprs: &'i [T],
cols: Option<&'i Vec<String>>,
)
| 1148 | |
| 1149 | /// Wrap the given `exprs` (with `cols`) into [`HumanizedExpr`] with the current `mode`. |
| 1150 | fn seq<'i, T>( |
| 1151 | &self, |
| 1152 | exprs: &'i [T], |
| 1153 | cols: Option<&'i Vec<String>>, |
| 1154 | ) -> impl Iterator<Item = HumanizedExpr<'i, T, Self>> + Clone { |
| 1155 | exprs.iter().map(move |expr| self.expr(expr, cols)) |
| 1156 | } |
| 1157 | } |
| 1158 | |
| 1159 | /// A [`HumanizerMode`] that is ambiguous but allows us to print valid SQL |
no test coverage detected