trait
Equal[A] extends AnyRef
Abstract Value Members
-
abstract
def
equal(a: A, b: A): Boolean
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
def
+(other: String): String
-
def
->[B](y: B): (Equal[A], B)
-
final
def
==(arg0: Any): Boolean
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
def
ensuring(cond: (Equal[A]) ⇒ Boolean, msg: ⇒ Any): Equal[A]
-
def
ensuring(cond: (Equal[A]) ⇒ Boolean): Equal[A]
-
def
ensuring(cond: Boolean, msg: ⇒ Any): Equal[A]
-
def
ensuring(cond: Boolean): Equal[A]
-
final
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
def
finalize(): Unit
-
def
formatted(fmtstr: String): String
-
final
def
getClass(): Class[_]
-
def
hashCode(): Int
-
def
is[U](implicit classifier: Classifier[Equal[A], U]): Boolean
-
final
def
isInstanceOf[T0]: Boolean
-
def
isNot[U](implicit classifier: Classifier[Equal[A], U]): Boolean
-
final
def
ne(arg0: AnyRef): Boolean
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
def
parse[U](implicit convert: Convert[Equal[A], inputs.Input], parse: Parse[U], dialect: Dialect): parsers.Parsed[U]
-
def
show[Style[X] <: Show[X]](implicit style: Style[Equal[A]]): String
-
def
structure: String
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
syntax: String
-
def
toString(): String
-
def
tokenize(implicit convert: Convert[Equal[A], inputs.Input], tokenize: Tokenize, dialect: Dialect): tokenizers.Tokenized
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
-
def
→[B](y: B): (Equal[A], B)
Inherited from Any
Inherited by implicit conversion any2stringadd from
Equal[A] to any2stringadd[Equal[A]]
Inherited by implicit conversion StringFormat from
Equal[A] to StringFormat[Equal[A]]
Inherited by implicit conversion Ensuring from
Equal[A] to Ensuring[Equal[A]]
Inherited by implicit conversion ArrowAssoc from
Equal[A] to ArrowAssoc[Equal[A]]
Type class used to determine equality.
For examples, see Structurally or Syntactically.
Inspired by cats.Eq and scalaz.Equal.