summaryrefslogtreecommitdiff
path: root/test/files/run/equality.scala
Commit message (Collapse)AuthorAgeFilesLines
* Fixed a BigDecimal/Long comparison bug reported...Paul Phillips2010-05-201-0/+2
| | | | | Fixed a BigDecimal/Long comparison bug reported on the list. No review.
* Returning to the thrilling world of equality an...Paul Phillips2010-03-191-0/+2
| | | | | | | | Returning to the thrilling world of equality and hashCodes now that Any.## is a reality. Moved the hash functions from Predef to ScalaRunTime, and made what appears to be an optimization to equals by not losing the result of an instanceof test. Review by community.
* Bringing BigInt and BigDecimal into the club of...Paul Phillips2009-11-121-0/+36
Bringing BigInt and BigDecimal into the club of things which can be equal to one another and which will have the same hashCode. Fixed some old and some new bugs associated with equality. Note: not fully optimized.