O object

Eql

extends Object with Serializable

Companion object containing a few universally known Eql instances. Eql instances involving primitive types or the Null type are handled directly in the compiler (see Implicits.synthesizedEql), so they are not included here.

Supertypes

Object, Serializable

Members

object 

derived

A universal Eql instance.

A universal Eql instance.

def 

eqlAny

[L, R] : Eql[L,R]

A fall-back instance to compare values of any types. Even though this method is not declared as given, the compiler will synthesize implicit arguments a...

A fall-back instance to compare values of any types. Even though this method is not declared as given, the compiler will synthesize implicit arguments as solutions to Eql[T, U] queries if the rules of multiversal equality require it.

final given def 

eqlNumber

: Eql[Number,Number]

final given def 

eqlProxy

: Eql[Proxy,AnyRef]

final given def 

eqlSeq

[T, U] ( implicit  eq: Eql[T,U] ) : Eql[Seq[T],Seq[U]]

final given def 

eqlSet

[T, U] ( implicit  eq: Eql[T,U] ) : Eql[Set[T],Set[U]]

final given def 

eqlString

: Eql[String,String]