+
K
Supported in: Batch, Streaming
Returns an array after removing all provided 'value' from the given array.
Expression categories: Array
Type variable bounds: T accepts AnyType
Output type: Array<T>
Argument values:
Output: [ 2, 3 ]
Description: Remove all instances of the value. Argument values:
Output: [ 1 ]
Description: Return the whole array if the value is not found. Argument values:
Output: [ 1, 2, 3 ]
array
value