If you’re referring to creating an interface and using it as a lambda, that’s not possible with interfaces defined in Kotlin (yet). You’ll want to use lambdas directly in Kotlin ie.
() -> {...}
or define your interfaces in Java.
r
robstoll
02/14/2018, 4:12 PM
fair enough, I am waiting for a future version then