| 436 | /// Invoke a [`HigherOrderUDF`] with a set of arguments |
| 437 | #[derive(Clone, Eq, PartialOrd, Debug)] |
| 438 | pub struct HigherOrderFunction { |
| 439 | /// The function |
| 440 | pub func: Arc<HigherOrderUDF>, |
| 441 | /// List of expressions to feed to the functions as arguments |
| 442 | pub args: Vec<Expr>, |
| 443 | } |
| 444 | |
| 445 | impl HigherOrderFunction { |
| 446 | /// Create a new `HigherOrderFunction` from a [`HigherOrderUDF`] |
no outgoing calls
searching dependent graphs…