Eq

scalus.prelude.Eq
See theEq companion object
@FunctionalInterface
trait Eq[-A] extends (A, A) => Boolean, CompileDerivations

Attributes

Companion
object
Graph
Supertypes
trait (A, A) => Boolean
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

override def apply(lhs: A, rhs: A): Boolean

Attributes

Definition Classes
Function2

Concrete methods

inline def eqv(inline lhs: A, inline rhs: A): Boolean
Extension method from Eq
inline def notEqv(inline lhs: A, inline rhs: A): Boolean
Extension method from Eq
def orElse(other: Eq[A]): Eq[A]
Extension method from Eq
def orElseBy[B : Eq](mapper: A => B): Eq[A]
Extension method from Eq

Inherited methods

def curried: A => A => Boolean

Attributes

Inherited from:
Function2
override def toString(): String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Function2 -> Any
Inherited from:
Function2
def tupled: ((A, A)) => Boolean

Attributes

Inherited from:
Function2