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

scala.compiletime.ops.any.scala Maven / Gradle / Ivy

package scala.compiletime
package ops

object any:
  /** Equality comparison of two singleton types.
   * ```scala
   * val eq1: 1 == 1 = true
   * val eq2: 1 == "1" = false
   * val eq3: "1" == "1" = true
   * ```
   * @syntax markdown
   */
  type ==[X, Y] <: Boolean

  /** Inequality comparison of two singleton types.
   * ```scala
   * val eq1: 1 != 1 = false
   * val eq2: 1 != "1" = true
   * val eq3: "1" != "1" = false
   * ```
   * @syntax markdown
   */
  type !=[X, Y] <: Boolean




© 2015 - 2025 Weber Informatics LLC | Privacy Policy