Kotlin Convert Boolean to Int

Apr 8, 2019
return 1 if true

Kotlin extension: return 1 if true, else 0

fun Boolean.toInt(): Int {    return if (this) 1 else 0}

or

return 1 if true, return 0 if null or false

fun Boolean?.toInt(): Int {    return if (this == true) 1 else 0}

❤️ Is this article helpful?

Buy me a coffee ☕ or support my work via PayPal to keep this space 🖖 and ad-free.

Do send some 💖 to @d_luaz or share this article.

✨ By Desmond Lua

A dream boy who enjoys making apps, travelling and making youtube videos. Follow me on @d_luaz

👶 Apps I built

Travelopy - discover travel places in Malaysia, Singapore, Taiwan, Japan.