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

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

There is a newer version: 5.35.2.0
Show newest version
package org.http4k.connect

import kotlin.reflect.KClass

inline fun  kClass(): KClass = T::class

// TODO suggesting moving into http4k-core: KotlinExtensions.kt
fun  StringBuilder.appendAll(items: Collection, fn: (T) -> String): StringBuilder {
    for (item in items) {
        append(fn(item))
    }
    return this
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy