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

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

package com.pubnub.internal.extension

fun Int.nonPositiveToNull() =
    if (this < 1) {
        null
    } else {
        this
    }

fun Int.limit(limit: Int): Int {
    return when {
        this > limit -> limit
        else -> this
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy