I would love for this code snippet to be valid in ...
# announcements
b
I would love for this code snippet to be valid in kotlin:
if( car?.isElectric ) doSomething()
instead of explicitly having to check for true like this
if( car?.isElectric == true ) doSomething()
Is there any chance that might be considered?
👍 1