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

com.wheaties.logical.Or.scala Maven / Gradle / Ivy

The newest version!
package com.wheaties.logical

object Or{
  def apply[A](x: A, y: A)(implicit dis: Disjunction[A]) = dis.disjunction(x, y)
}

trait Disjunction[A]{
  def disjunction(p: A, q: A): A
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy