class CheckingEqualizer[L] extends AnyRef
Class used via an implicit conversion to enable two objects to be compared with
=== and !== with a Boolean result and an enforced type constraint between
two object types. For example:
assert(a === b) assert(c !== d)
You can also check numeric values against another with a tolerance. Here are some examples:
assert(a === (2.0 +- 0.1)) assert(c !== (2.0 +- 0.1))
- Alphabetic
- By Inheritance
- CheckingEqualizer
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
-    new CheckingEqualizer(leftSide: L)- leftSide
- An object to convert to - Equalizer, which represents the value on the left side of a- ===or- !==invocation.
 
Value Members
-   final  def !=(arg0: Any): Boolean- Definition Classes
- AnyRef → Any
 
-    def !==(spread: Spread[L]): BooleanDetermine whether a numeric object is outside the passed Spread, returning aBoolean.Determine whether a numeric object is outside the passed Spread, returning aBoolean.- spread
- the - Spreadagainst which to compare the value passed to the constructor as- leftSide
- returns
- true if the value passed to the constructor as - leftSideis not within the- Spreadpassed to this method.
 
-    def !==[R](rightSide: R)(implicit constraint: CanEqual[L, R]): BooleanCompare two objects for inequality, returning a Boolean, using theConstraintinstance passed asconstraint.Compare two objects for inequality, returning a Boolean, using theConstraintinstance passed asconstraint.- rightSide
- the object to compare for inequality with - leftSide, passed to the constructor
- constraint
- an implicit - Constraintinstance that enforces a relationship between types- Land- Rand defines a way of calculating equality for objects of type- L
- returns
- true if the - leftSideand- rightSideobjects are not equal according to the passed- Constraintinstance.
 
-   final  def ##(): Int- Definition Classes
- AnyRef → Any
 
-   final  def ==(arg0: Any): Boolean- Definition Classes
- AnyRef → Any
 
-    def ===(spread: Spread[L]): BooleanDetermine whether a numeric object is within the passed Spread, returning aBoolean.Determine whether a numeric object is within the passed Spread, returning aBoolean.- spread
- the - Spreadagainst which to compare the value passed to the constructor as- leftSide
- returns
- true if the value passed to the constructor as - leftSideis not within the- Spreadpassed to this method.
 
-    def ===[R](rightSide: R)(implicit constraint: CanEqual[L, R]): BooleanCompare two objects for equality, returning a Boolean, using theConstraintinstance passed asconstraint.Compare two objects for equality, returning a Boolean, using theConstraintinstance passed asconstraint.- rightSide
- the object to compare for equality with - leftSide, passed to the constructor
- constraint
- an implicit - Constraintinstance that enforces a relationship between types- Land- Rand defines a way of calculating equality for objects of type- L
- returns
- true if the - leftSideand- rightSideobjects are equal according to the passed- Constraintinstance.
 
-   final  def asInstanceOf[T0]: T0- Definition Classes
- Any
 
-    def clone(): AnyRef- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
 
-   final  def eq(arg0: AnyRef): Boolean- Definition Classes
- AnyRef
 
-    def equals(arg0: AnyRef): Boolean- Definition Classes
- AnyRef → Any
 
-    def finalize(): Unit- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
 
-   final  def getClass(): Class[_ <: AnyRef]- Definition Classes
- AnyRef → Any
- Annotations
- @native()
 
-    def hashCode(): Int- Definition Classes
- AnyRef → Any
- Annotations
- @native()
 
-   final  def isInstanceOf[T0]: Boolean- Definition Classes
- Any
 
-  val leftSide: L
-   final  def ne(arg0: AnyRef): Boolean- Definition Classes
- AnyRef
 
-   final  def notify(): Unit- Definition Classes
- AnyRef
- Annotations
- @native()
 
-   final  def notifyAll(): Unit- Definition Classes
- AnyRef
- Annotations
- @native()
 
-   final  def synchronized[T0](arg0: => T0): T0- Definition Classes
- AnyRef
 
-    def toString(): String- Definition Classes
- AnyRef → Any
 
-   final  def wait(): Unit- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
 
-   final  def wait(arg0: Long, arg1: Int): Unit- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
 
-   final  def wait(arg0: Long): Unit- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()