spire.algebra.Eq.scala Maven / Gradle / Ivy
package spire.algebra
import scala.{specialized => spec}
/**
* A type class used to determine equality between 2 instances of the same
* type. Any 2 instances `x` and `y` are equal if `eqv(x, y)` is `true`.
* Moreover, `eqv` should form an equivalence relation.
*/
trait Eq[@spec A] extends Any {
/** Returns `true` if `x` and `y` are equivalent, `false` otherwise. */
def eqv(x:A, y:A): Boolean
/** Returns `false` if `x` and `y` are equivalent, `true` otherwise. */
def neqv(x:A, y:A): Boolean = !eqv(x, y)
/**
* Constructs a new `Eq` instance for type `B` where 2 elements are
* equivalent iff `eqv(f(x), f(y))`.
*/
def on[@spec B](f:B => A): Eq[B] = new MappedEq(this)(f)
}
private[algebra] class MappedEq[@spec A, @spec B](eq: Eq[B])(f: A => B) extends Eq[A] {
def eqv(x: A, y: A): Boolean = eq.eqv(f(x), f(x))
}
object Eq {
def apply[A](implicit e:Eq[A]):Eq[A] = e
def by[@spec A, @spec B](f:A => B)(implicit e:Eq[B]): Eq[A] = new MappedEq(e)(f)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy