@@ -143,7 +143,7 @@ object ArraySeq extends StrictOptimizedClassTagSeqFactory[ArraySeq] { self =>
143143 def length : Int = array.length
144144 def apply (index : Int ): T = array(index)
145145 def update (index : Int , elem : T ): Unit = { array(index) = elem }
146- override def hashCode = MurmurHash3 .arraySeqHash(array)
146+ override def hashCode () = MurmurHash3 .arraySeqHash(array)
147147 override def equals (that : Any ) = that match {
148148 case that : ofRef[_] =>
149149 Array .equals(
@@ -166,7 +166,7 @@ object ArraySeq extends StrictOptimizedClassTagSeqFactory[ArraySeq] { self =>
166166 def length : Int = array.length
167167 def apply (index : Int ): Byte = array(index)
168168 def update (index : Int , elem : Byte ): Unit = { array(index) = elem }
169- override def hashCode = MurmurHash3 .arraySeqHash(array)
169+ override def hashCode () = MurmurHash3 .arraySeqHash(array)
170170 override def equals (that : Any ) = that match {
171171 case that : ofByte => Arrays .equals(array, that.array)
172172 case _ => super .equals(that)
@@ -186,7 +186,7 @@ object ArraySeq extends StrictOptimizedClassTagSeqFactory[ArraySeq] { self =>
186186 def length : Int = array.length
187187 def apply (index : Int ): Short = array(index)
188188 def update (index : Int , elem : Short ): Unit = { array(index) = elem }
189- override def hashCode = MurmurHash3 .arraySeqHash(array)
189+ override def hashCode () = MurmurHash3 .arraySeqHash(array)
190190 override def equals (that : Any ) = that match {
191191 case that : ofShort => Arrays .equals(array, that.array)
192192 case _ => super .equals(that)
@@ -206,7 +206,7 @@ object ArraySeq extends StrictOptimizedClassTagSeqFactory[ArraySeq] { self =>
206206 def length : Int = array.length
207207 def apply (index : Int ): Char = array(index)
208208 def update (index : Int , elem : Char ): Unit = { array(index) = elem }
209- override def hashCode = MurmurHash3 .arraySeqHash(array)
209+ override def hashCode () = MurmurHash3 .arraySeqHash(array)
210210 override def equals (that : Any ) = that match {
211211 case that : ofChar => Arrays .equals(array, that.array)
212212 case _ => super .equals(that)
@@ -247,7 +247,7 @@ object ArraySeq extends StrictOptimizedClassTagSeqFactory[ArraySeq] { self =>
247247 def length : Int = array.length
248248 def apply (index : Int ): Int = array(index)
249249 def update (index : Int , elem : Int ): Unit = { array(index) = elem }
250- override def hashCode = MurmurHash3 .arraySeqHash(array)
250+ override def hashCode () = MurmurHash3 .arraySeqHash(array)
251251 override def equals (that : Any ) = that match {
252252 case that : ofInt => Arrays .equals(array, that.array)
253253 case _ => super .equals(that)
@@ -267,7 +267,7 @@ object ArraySeq extends StrictOptimizedClassTagSeqFactory[ArraySeq] { self =>
267267 def length : Int = array.length
268268 def apply (index : Int ): Long = array(index)
269269 def update (index : Int , elem : Long ): Unit = { array(index) = elem }
270- override def hashCode = MurmurHash3 .arraySeqHash(array)
270+ override def hashCode () = MurmurHash3 .arraySeqHash(array)
271271 override def equals (that : Any ) = that match {
272272 case that : ofLong => Arrays .equals(array, that.array)
273273 case _ => super .equals(that)
@@ -287,7 +287,7 @@ object ArraySeq extends StrictOptimizedClassTagSeqFactory[ArraySeq] { self =>
287287 def length : Int = array.length
288288 def apply (index : Int ): Float = array(index)
289289 def update (index : Int , elem : Float ): Unit = { array(index) = elem }
290- override def hashCode = MurmurHash3 .arraySeqHash(array)
290+ override def hashCode () = MurmurHash3 .arraySeqHash(array)
291291 override def equals (that : Any ) = that match {
292292 case that : ofFloat =>
293293 val thatArray = that.array
@@ -313,7 +313,7 @@ object ArraySeq extends StrictOptimizedClassTagSeqFactory[ArraySeq] { self =>
313313 def length : Int = array.length
314314 def apply (index : Int ): Double = array(index)
315315 def update (index : Int , elem : Double ): Unit = { array(index) = elem }
316- override def hashCode = MurmurHash3 .arraySeqHash(array)
316+ override def hashCode () = MurmurHash3 .arraySeqHash(array)
317317 override def equals (that : Any ) = that match {
318318 case that : ofDouble =>
319319 val thatArray = that.array
@@ -339,7 +339,7 @@ object ArraySeq extends StrictOptimizedClassTagSeqFactory[ArraySeq] { self =>
339339 def length : Int = array.length
340340 def apply (index : Int ): Boolean = array(index)
341341 def update (index : Int , elem : Boolean ): Unit = { array(index) = elem }
342- override def hashCode = MurmurHash3 .arraySeqHash(array)
342+ override def hashCode () = MurmurHash3 .arraySeqHash(array)
343343 override def equals (that : Any ) = that match {
344344 case that : ofBoolean => Arrays .equals(array, that.array)
345345 case _ => super .equals(that)
@@ -356,7 +356,7 @@ object ArraySeq extends StrictOptimizedClassTagSeqFactory[ArraySeq] { self =>
356356 def length : Int = array.length
357357 def apply (index : Int ): Unit = array(index)
358358 def update (index : Int , elem : Unit ): Unit = { array(index) = elem }
359- override def hashCode = MurmurHash3 .arraySeqHash(array)
359+ override def hashCode () = MurmurHash3 .arraySeqHash(array)
360360 override def equals (that : Any ) = that match {
361361 case that : ofUnit => array.length == that.array.length
362362 case _ => super .equals(that)
0 commit comments