trait
MapEqualityConstraints extends AnyRef
Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: Any): Boolean
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
final
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
def
finalize(): Unit
-
final
def
getClass(): Class[_]
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
implicit
def
mapEqualityConstraint[KA, VA, CA[ka, kb] <: GenMap[ka, kb], KB, VB, CB[kb, vb] <: GenMap[kb, vb]](implicit equalityOfA: Equality[CA[KA, VA]], evKey: CanEqual[KA, KB], evValue: CanEqual[VA, VB]): CanEqual[CA[KA, VA], CB[KB, VB]]
-
final
def
ne(arg0: AnyRef): Boolean
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
Inherited from AnyRef
Inherited from Any
Provides an implicit method that loosens the equality constraint defined by
TypeCheckedTripleEquals
orConversionCheckedTripleEquals
for ScalaMap
s to one that more closely matches Scala's approach toMap
equality.Scala's approach to
Map
equality is that if both objects being compared areMap
s, the elements are compared to determine equality. This means you could compare an immutableTreeMap
and a mutableHashMap
for equality, for instance, and get true so long as the two maps contained the same key-value mappings. Here's an example:Such a comparison would not, however, compile if you used
===
under eitherTypeCheckedTripleEquals
orConversionCheckedTripleEquals
, becauseTreeMap
andHashMap
are not in a subtype/supertype relationship, nor does an implicit conversion by default exist between them:If you mix or import the implicit conversion provided by
MapEqualityConstraint
, however, the comparison will be allowed:The equality constraint provided by this trait requires that both left and right sides are subclasses of
scala.collection.GenMap
and that anEqualityConstraint
can be found for both key types and both value types. In the example above, both theTreeMap
andHashMap
are subclasses ofscala.collection.GenMap
, and the regularTypeCheckedTripleEquals
provides equality constraints for the key types, both of which areString
, and value types, both of which areInt
. By contrast, this trait would not allow aTreeMap[String, Int]
to be compared against aHashMap[String, java.util.Date]
, because no equality constraint will exist between the value typesInt
andDate
: