trait EqualInstances extends AnyRef
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- EqualInstances
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- implicit def ParMapPartialOrd[A, B](implicit arg0: Equal[B]): PartialOrd[ParMap[A, B]]
Derives an
PartialOrd[ParMap[A, B]]
(and thusEqual[ParMap[A, B]]
) given anEqual[B]
.Derives an
PartialOrd[ParMap[A, B]]
(and thusEqual[ParMap[A, B]]
) given anEqual[B]
. Due to the limitations of Scala'sParMap
, this uses object equality on the keys. - implicit def ParSeqEqual[A](implicit arg0: Equal[A]): Equal[scala.collection.parallel.immutable.ParSeq[A]]
Derives an
Equal[ParSeq[A]]
given anEqual[A]
. - implicit def ParSetHashPartialOrd[A]: Hash[ParSet[A]] with PartialOrd[ParSet[A]]
PartialOrd
andHash
(and thus alsoEqual
) instance forParSet[A]
values.PartialOrd
andHash
(and thus alsoEqual
) instance forParSet[A]
values. Due to the limitations of Scala'sParSet
, this uses object equality and hash code on the elements.