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

org.http4k.util.Appendable.kt Maven / Gradle / Ivy

There is a newer version: 5.31.0.0
Show newest version
package org.http4k.util

class Appendable(val all: MutableList = mutableListOf()) {
    operator fun plusAssign(t: T) {
        all += t
    }

    operator fun plusAssign(t: Collection) {
        all += t
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy