5 lines
134 B
Kotlin
Vendored
5 lines
134 B
Kotlin
Vendored
import java.util.function.Predicate
|
|
|
|
class TestSamInitializedWithLambda {
|
|
val isEmpty = Predicate { x: String -> x.length == 0 }
|
|
} |