EqualInstances

zio.prelude.scalaparallelcollections.EqualInstances

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Implicits

Implicits

implicit def ParMapPartialOrd[A, B : Equal]: PartialOrd[ParMap[A, B]]

Derives an PartialOrd[ParMap[A, B]] (and thus Equal[ParMap[A, B]]) given an Equal[B]. Due to the limitations of Scala's ParMap, this uses object equality on the keys.

Derives an PartialOrd[ParMap[A, B]] (and thus Equal[ParMap[A, B]]) given an Equal[B]. Due to the limitations of Scala's ParMap, this uses object equality on the keys.

Attributes

implicit def ParSeqEqual[A : Equal]: Equal[ParSeq[A]]

Derives an Equal[ParSeq[A]] given an Equal[A].

Derives an Equal[ParSeq[A]] given an Equal[A].

Attributes

implicit def ParSetHashPartialOrd[A]: Hash[ParSet[A]] & PartialOrd[ParSet[A]]

PartialOrd and Hash (and thus also Equal) instance for ParSet[A] values. Due to the limitations of Scala's ParSet, this uses object equality and hash code on the elements.

PartialOrd and Hash (and thus also Equal) instance for ParSet[A] values. Due to the limitations of Scala's ParSet, this uses object equality and hash code on the elements.

Attributes