mirror of
https://github.com/HMCore/Orbot.git
synced 2026-01-10 03:53:22 +00:00
9 lines
165 B
Kotlin
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
|
|
}
|