Hello, I'm wondering if the following snippet can...
# announcements
p
Hello, I'm wondering if the following snippet can be considered as "good Kotlin" :
Copy code
viewModel.bankViewModel?.let {
  beneficiaryBankBicTextview.text = it.bic
  ...
} ?: run { bankInfoContainer.visibility = View.GONE }
Some could find the usage of the elvis operator outside of an affectation quite confusing. WDYT ?