SecureEq

bobcats.SecureEq
See theSecureEq companion object
trait SecureEq[A] extends Eq[A]

Attributes

Companion
object
Source
SecureEq.scala
Graph
Supertypes
trait Eq[A]
trait Serializable
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

override def eqv(expected: A, supplied: A): Boolean

A constant time equals comparison - does not terminate early if test will fail. For best results always pass the expected value as the first parameter.

A constant time equals comparison - does not terminate early if test will fail. For best results always pass the expected value as the first parameter.

Attributes

Definition Classes
Eq
Source
SecureEq.scala

Inherited methods

def neqv(x: A, y: A): Boolean

Returns false if x and y are equivalent, true otherwise.

Returns false if x and y are equivalent, true otherwise.

Attributes

Inherited from:
Eq
Source
Eq.scala