Hey everyone,
I was just thinking why can’t we optionally (and without any modifiers they are val) have mutable function parameters like:
fun (var convertView: View?) {
if (convertView == null) convertView = View(activity)
// do something with convertView
}