MCPcopy Create free account
hub / github.com/apache/datafusion / any

Method any

datafusion/expr/src/higher_order_function.rs:132–138  ·  view source on GitHub ↗

A specified number of arguments of any type

(arg_count: usize, volatility: Volatility)

Source from the content-addressed store, hash-verified

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

Callers 13

enumerate_grouping_setsFunction · 0.45
fields_with_udfFunction · 0.45
data_typesFunction · 0.45
get_valid_typesFunction · 0.45
try_new_with_schemaMethod · 0.45
try_newMethod · 0.45
is_scalarMethod · 0.45
contains_grouping_setFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected