commonMain.extensions.Boolean.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluid-stdlib-tvosx64 Show documentation
Show all versions of fluid-stdlib-tvosx64 Show documentation
Potentially useful Kotlin standard library additions
package io.fluidsonic.stdlib
public inline fun Boolean.ifFalse(block: () -> Boolean): Boolean =
this || block()
public inline fun Boolean.ifTrue(block: () -> Boolean): Boolean =
this && block()
public inline fun Boolean.thenTake(block: () -> Result): Result? =
if (this) block() else null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy