commonMain.com.multiplatform.webview.util.Extension.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compose-webview-multiplatform Show documentation
Show all versions of compose-webview-multiplatform Show documentation
WebView for JetBrains Compose Multiplatform
package com.multiplatform.webview.util
fun Pair?.isZero(): Boolean {
return this == null || (first == 0 && second == 0)
}
fun Pair?.notZero(): Boolean {
return !isZero()
}