Bob
02/06/2018, 5:29 PMit
single lambda parameter paradigm working in the context of what I guess would be an anonymous lambda? For a trivial example:
kotlin
val test: Pair<String, (String) -> Boolean> = "length is 6" to { input -> input.length == 6 }
Is there a way I can get the implicit it
parameter in there?Ruckus
02/06/2018, 5:35 PMBob
02/06/2018, 5:37 PMRuckus
02/06/2018, 5:40 PM