<@U3T6LDWTD> commented on <@U3ZLHBTLG>’s file <htt...
# language-proposals
u
@benleggiero commented on @louiscad’s file https://kotlinlang.slack.com/files/U3ZLHBTLG/F4KBPRMQC/-.kt:
Copy code
fun BluetoothAdapter.isOffOrTurningOff(): Boolean {
    return when (state) {
        BluetoothAdapter.STATE_OFF,
        BluetoothAdapter.STATE_TURNING_OFF -> true
        else -> false
    }
}