https://kotlinlang.org logo
a

addamsson

07/14/2019, 2:38 PM
Copy code
typeclass Monoid {
    fun Self.combine(b: Self): Self
    fun Companion.empty(): Self
}