Join Slack
Powered by
For an article I'm writing, could you tell me whic...
# codingconventions
e
Ellen Spertus
05/04/2021, 5:27 PM
For an article I'm writing, could you tell me which version of the following code you would write/recommend? Feel free to add options. 1️⃣
if (b == true)
2️⃣
if (b == true) // b could be null
3️⃣
if (b != null && b)
1️⃣ 2
2️⃣ 2
l
Luke
05/04/2021, 7:03 PM
https://kotlinlang.org/docs/idioms.html#nullable-boolean
🙏 1
👆 2
➕ 1
2
Views
Open in Slack
Previous
Next