how about nullable lambdas: `fun foo (p : ()?->Unit)` or `fun foo(p: ?()->Unit)` instead of ...
k
how about nullable lambdas:
fun foo (p : ()?->Unit)
or
fun foo(p: ?()->Unit)
instead of
fun foo(p: (()->Unit)?)
2
👎 4