Functions.ArrayRemove(Column, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Remove all elements that equal to element from the given array.
[Microsoft.Spark.Since("2.4.0")]
public static Microsoft.Spark.Sql.Column ArrayRemove(Microsoft.Spark.Sql.Column column, object element);
[<Microsoft.Spark.Since("2.4.0")>]
static member ArrayRemove : Microsoft.Spark.Sql.Column * obj -> Microsoft.Spark.Sql.Column
Public Shared Function ArrayRemove (column As Column, element As Object) As Column
Parameters
- column
- Column
Column to apply
- element
- Object
Element to remove
Returns
Column object
- Attributes