Podana funkcja foo:
fun foo(m: String, bar: (m: String) -> Unit) {
bar(m)
}
Możemy zrobić:
foo("a message", { println("this is a message: $it") } )
//or
foo("a message") { println("this is a message: $it") }
Teraz powiedzmy, że mamy następującą funkcję:
fun buz(m: String) {
println("another message: $m")
}
Czy istnieje sposób na przekazanie „buz” jako parametru do „foo”? Coś jak:
foo("a message", buz)