has anyone considered the existence of `operator?`...
# language-proposals
p
has anyone considered the existence of `operator?`s? so that we're able to replace stuff like
Copy code
"Error" + (cause?.let { ", cause: $it" } ?: "")
with
Copy code
"Error" +? cause?.let { ", cause: $it" }
... not a big deal but it could be cool
👍 1