removeAllFromArray property

ArrayValue? removeAllFromArray
getter/setter pair

Remove all of the given elements from the array in the field.

If the field is not an array, or if the field does not yet exist, it is set to the empty array. Equivalent numbers of the different types (e.g. 3L and 3.0) are considered equal when deciding whether an element should be removed. NaN is equal to NaN, and Null is equal to Null. This will remove all equivalent values if there are duplicates. The corresponding transform_result will be the null value.

Implementation

ArrayValue? removeAllFromArray;