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

commonMain.com.multiplatform.webview.util.Extension.kt Maven / Gradle / Ivy

There is a newer version: 1.9.40-alpha04
Show newest version
package com.multiplatform.webview.util

fun Pair?.isZero(): Boolean {
    return this == null || (first == 0 && second == 0)
}

fun Pair?.notZero(): Boolean {
    return !isZero()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy