All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pubnub.internal.extension.Boolean.kt Maven / Gradle / Ivy

package com.pubnub.internal.extension

internal val Boolean.numericString: String
    get() =
        if (this) {
            "1"
        } else {
            "0"
        }

internal val Boolean.valueString: String
    get() = "$this"




© 2015 - 2024 Weber Informatics LLC | Privacy Policy