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

Function array_remove_all_inner

datafusion/functions-nested/src/remove.rs:333–338  ·  view source on GitHub ↗
(args: &[ArrayRef])

Source from the content-addressed store, hash-verified

331}
332
333fn array_remove_all_inner(args: &[ArrayRef]) -> Result<ArrayRef> {
334 let [array, element] = take_function_args("array_remove_all", args)?;
335
336 let arr_n = vec![i64::MAX; array.len()];
337 array_remove_internal(array, element, &arr_n)
338}
339
340fn array_remove_internal(
341 array: &ArrayRef,

Callers

nothing calls this directly

Calls 2

take_function_argsFunction · 0.85
array_remove_internalFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…