(args: Vec<Expr<T>>)
| 1426 | |
| 1427 | impl<T: AstInfo> FunctionArgs<T> { |
| 1428 | pub fn args(args: Vec<Expr<T>>) -> Self { |
| 1429 | Self::Args { |
| 1430 | args, |
| 1431 | order_by: vec![], |
| 1432 | } |
| 1433 | } |
| 1434 | |
| 1435 | /// The first positional argument, if any (the `*` form has none). |
| 1436 | pub fn first(&self) -> Option<&Expr<T>> { |
no outgoing calls