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

kits.std.String.scala Maven / Gradle / Ivy

The newest version!
package kits

package std

trait StringMonoid extends Monoid[String] {

  override final def empty: String = ""

  override final def append(x: String, y: String): String = x + y

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy