Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
1.0-JSR-2
-
None
-
None
-
Groovy jsr02, win xp sp2, jdk 1.4.2_08
Description
List.minus() almost always preserves the ordering in the original list, e.g.
[1,2,3,4] - [2,3] == [1,4]
[1,2,3,4] - [2,3] != [4,1]
This feels natural. However, this does not always work - see the included test case.