on another topic is the best expression for nullab...
# announcements
b
on another topic is the best expression for nullable lambda arguments to be done as so:
Copy code
fun doSomething(block: ((String) -> Boolean)? = null) { ... }

doSomething()
doSomething { it.toBoolean() }