I have a fun which takes a lambda as arg, but some...
# announcements
f
I have a fun which takes a lambda as arg, but sometimes I want to call this fun with no lambda (or empty lambda) what I use now is
Copy code
val call = <…>
makeCall(call) { }
is it right?