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

libretto.cats.Affine.scala Maven / Gradle / Ivy

The newest version!
package libretto.cats

trait Affine[->[_, _], One, A] {
  def discard: A -> One
}

object Affine {
  def from[->[_, _], One, A](f: A -> One): Affine[->, One, A] =
    new Affine[->, One, A] {
      override def discard: A -> One =
        f
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy