summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/GenSetLike.scala
diff options
context:
space:
mode:
authorAleksandar Prokopec <axel22@gmail.com>2012-06-07 14:26:35 +0200
committerAleksandar Prokopec <axel22@gmail.com>2012-06-07 19:21:45 +0200
commit881641f83461b5fc23ab25d1efa08b7a760a3363 (patch)
tree5ed07883b14c77d6020c2e99e50f3407587495e6 /src/library/scala/collection/GenSetLike.scala
parent6cdb6b0299cb917ac3df9e39aa932bacdc31faf9 (diff)
downloadscala-881641f83461b5fc23ab25d1efa08b7a760a3363.tar.gz
scala-881641f83461b5fc23ab25d1efa08b7a760a3363.tar.bz2
scala-881641f83461b5fc23ab25d1efa08b7a760a3363.zip
Add the first iteration of the `util.hashing` package.
Move `MurmurHash3` to `util.hashing`. Make the `class` private and retain a public companion `object`, and put the `MurmurHash3.Hashing` implementations for various types in the companion. Add a method which composes `ByteswapHashing` with some other hashing. Rename `hashOf` to `hash`. Fix chi-square test in a test-case. Review by @jsuereth. Moved a failing test that seems to use some other library version to pending.
Diffstat (limited to 'src/library/scala/collection/GenSetLike.scala')
-rw-r--r--src/library/scala/collection/GenSetLike.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/GenSetLike.scala b/src/library/scala/collection/GenSetLike.scala
index 219374abc6..18eb31da03 100644
--- a/src/library/scala/collection/GenSetLike.scala
+++ b/src/library/scala/collection/GenSetLike.scala
@@ -127,5 +127,5 @@ extends GenIterableLike[A, Repr]
// Calling map on a set drops duplicates: any hashcode collisions would
// then be dropped before they can be added.
// Hash should be symmetric in set entries, but without trivial collisions.
- override def hashCode() = util.MurmurHash3.setHash(seq)
+ override def hashCode() = util.hashing.MurmurHash3.setHash(seq)
}