All Downloads are FREE. Search and download functionalities are using the official Maven repository.

poly.algebra.HasTop.scala Maven / Gradle / Ivy

package poly.algebra

import poly.algebra.factory._
import poly.algebra.specgroup._

/**
 * Represents the existence of a maximum `top` element.
 *
 * An instance of this typeclass should satisfy the following axiom:
 *  - $lawTop
 * @define lawTop '''Top element''': ∀''a''∈X, ''a'' <= top.
 * @author Tongfei Chen
 * @since 0.2.5
 */
trait HasTop[@sp(fdilb) +X] {
  /** The maximum `top` element of this type. */
  def top: X

  def asIdentityWithTop: HasIdentity[X] = new HasIdentity[X] {
    def id: X = top
  }

}

object HasTop extends ImplicitGetter[HasTop]




© 2015 - 2024 Weber Informatics LLC | Privacy Policy