summaryrefslogtreecommitdiff
path: root/test/files/run/t6196.scala
Commit message (Collapse)AuthorAgeFilesLines
* Minor fixes in test. The equals method always returned true.Tobias Schlatter2014-03-131-1/+1
| | | | | | | This commit ensures that the classes we use to test HashMaps and HashSets in t6196 and t6200 have proper equals and hashCode methods. (The old equals method returned always true and therefore hashCode violated its contract).
* SI-6196 - Set should implement filterRĂ¼diger Klaehn2014-01-151-0/+68
Implements a version of filter and filterNot that reuses as much as possible from the existing tree instead of building an entirely new one like the builder-based filter does. This results in significant performance improvements on average. Adds a test of basic correctness of filter and filterNot as well as of the desirable properties of the new filter implementation. This is a collaboration between me and @Ichoran