toBooleanOrNull

fun Int.toBooleanOrNull(): Boolean?

Convert Int to Boolean if possible.

Example:

0.toBoolean() // false
1.toBoolean() // true
-1.toBoolean() // null

Since

1.1.0