object MapEqualityConstraints extends MapEqualityConstraints
Companion object that facilitates the importing of MapEqualityConstraints
members as
an alternative to mixing it in. One use case is to import MapEqualityConstraints
members so you can use
them in the Scala interpreter.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- MapEqualityConstraints
- MapEqualityConstraints
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- 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]]
Provides an equality constraint that allows two subtypes of
scala.collection.GenMap
s to be compared for equality with===
so long as anEqualityConstraint
is available for both key types and both value types.Provides an equality constraint that allows two subtypes of
scala.collection.GenMap
s to be compared for equality with===
so long as anEqualityConstraint
is available for both key types and both value types.- Definition Classes
- MapEqualityConstraints