scala.meta.contrib.equality.Equal.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalameta_native0.5_2.12 Show documentation
Show all versions of scalameta_native0.5_2.12 Show documentation
Scalameta umbrella module that includes all public APIs
The newest version!
package scala.meta.contrib.equality
/**
* Type class used to determine equality.
*
* For examples, see [[Structurally]] or [[Syntactically]].
*
* Inspired by cats.Eq and scalaz.Equal.
*/
trait Equal[A] {
def isEqual(a: A, b: A): Boolean
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy