<@U0JRS2YUB> it is just for convenience to clean u...
# announcements
a
@sreich it is just for convenience to clean up the code. e.g.
Copy code
fun foo(a, b, c, d, e, f, g, h) { }

fun bar(func: (a, b, c, d, e, f, g, h) -> Unit) { }

bar(::foo) //vs
bar { a, b, c, d, e, f, g, h -> foo(a, b, c, d, e, f, g, h) }