The most basic example ```fun A.test(a: (A.() -&gt...
# tornadofx
t
The most basic example
Copy code
fun A.test(a: (A.() ->Unit)? =null) = apply{a?.invoke(this)}
Would become
Copy code
fun A.test(a: (A.()->Unit ={}) = apply(a)
👍 2