Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
0.9.4.1
-
None
Description
array_except takes 2 arguments, both arguments being arrays, and returns all the items in the first array minus the items in the second array.
Example:
array_except([1, 2, 3, 4], [2, 3]) -> [1, 4] array_except([1, "2", "3"], ["2", 3]) -> [1, "3"]