Array.otherthan()
Jump to navigation
Jump to search
Array.otherthan(ArrayWithElementsToExclude)
Returns the elements except the specified elements.
- 1..100.otherthan(2) = 1 3 4 5 6 7 8 9 10.................100
- 1..100.otherthan(2..6) = 1 7 8 9 10 .................100