Hi I have a question regarding high-order function...
# getting-started
h
Hi I have a question regarding high-order function
Copy code
fun f(init: AClass.() -> Unit) {
    val obj = AClass()
    obj.init()
}
What is happening here? I am particularly confuse on that
.()
I can't see any docs related to this.