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

Function array_remove_inner

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

Source from the content-addressed store, hash-verified

317}
318
319fn array_remove_inner(args: &[ArrayRef]) -> Result<ArrayRef> {
320 let [array, element] = take_function_args("array_remove", args)?;
321
322 let arr_n = vec![1; array.len()];
323 array_remove_internal(array, element, &arr_n)
324}
325
326fn array_remove_n_inner(args: &[ArrayRef]) -> Result<ArrayRef> {
327 let [array, element, max] = take_function_args("array_remove_n", args)?;

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…