object Equivalence

Companion object for trait Equivalence that provides a factory method for producing default Equivalence instances.

Source
Equivalence.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Equivalence
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. implicit def default[T]: Equivalence[T]

    Provides default Equivalence implementations for the specified type whose areEqual method first calls .deep on any Array (on either the left or right side), then compares the resulting objects with ==.

    Provides default Equivalence implementations for the specified type whose areEqual method first calls .deep on any Array (on either the left or right side), then compares the resulting objects with ==.

    returns

    a default Equivalence[T]