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

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

The newest version!
package com.wheaties.logical

object And{
  def apply[A](x: A, y: A)(implicit con: Conjunction[A]) = con.conjunction(x, y)
}

trait Conjunction[A]{
  def conjunction(p: A, q: A): A
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy