A specified number of arguments of any type
(arg_count: usize, volatility: Volatility)
| 130 | |
| 131 | /// A specified number of arguments of any type |
| 132 | pub fn any(arg_count: usize, volatility: Volatility) -> Self { |
| 133 | Self { |
| 134 | type_signature: HigherOrderTypeSignature::Any(arg_count), |
| 135 | volatility, |
| 136 | lambda_parameters_max_iterations: LAMBDA_PARAMETERS_MAX_ITERATIONS, |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | /// Exactly the specified arguments in the given order, with arbitrary types. |
| 141 | /// DataFusion will call [`HigherOrderUDFImpl::coerce_value_types`] to prepare the value |
no outgoing calls
no test coverage detected