Files
Orbot/src/main/kotlin/de/wulkanat/extensions/Generic.kt
2021-01-08 17:40:46 +01:00

9 lines
165 B
Kotlin

package de.wulkanat.extensions
inline fun <T> Boolean.alsoIf(other: T, body: () -> Unit): Boolean {
if (this == other) {
body()
}
return this
}