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

libretto.scaletto.impl.Monoid.scala Maven / Gradle / Ivy

The newest version!
package libretto.scaletto.impl

trait Monoid[M] {
  def unit: M
  def combine(m: M, n: M): M

  extension (m: M) {
    def <>(n: M): M = combine(m, n)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy