Files
kotlin-for-java-developers/src/Inline.kt

8 lines
215 B
Kotlin
Raw Normal View History

fun main() {
thisIsInlined { true }
}
// The function is replaced with the contects of the function
// No performance overhead
inline fun thisIsInlined(predicate: (Int) -> Boolean): Int? = 42.takeIf(predicate)