ParMapOps

zio.prelude.scalaparallelcollections.Syntax.ParMapOps
implicit class ParMapOps[K, V](l: ParMap[K, V])

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

def compareSoft(r: ParMap[K, V])(implicit V: PartialOrd[V]): PartialOrdering

Compares two maps, allowing for the values to be lesser in the lesser map or greater in the greater map

Compares two maps, allowing for the values to be lesser in the lesser map or greater in the greater map

Attributes

def compareStrict(r: ParMap[K, V])(implicit V: Equal[V]): PartialOrdering

Compares two maps, expecting the values for the common keys to be equal.

Compares two maps, expecting the values for the common keys to be equal.

Attributes

def compareWith(compareValues: (Ordering, ParIterable[(V, V)]) => PartialOrdering)(r: ParMap[K, V]): PartialOrdering

Compares two maps, where you supply compareValues that compares the common values

Compares two maps, where you supply compareValues that compares the common values

Attributes