commonMain.arrow.core.Triple.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arrow-core Show documentation
Show all versions of arrow-core Show documentation
Functional companion to Kotlin's Standard Library
The newest version!
@file:JvmMultifileClass
@file:JvmName("TupleNKt")
package arrow.core
import kotlin.jvm.JvmMultifileClass
import kotlin.jvm.JvmName
public operator fun , B : Comparable, C : Comparable> Triple.compareTo(other: Triple): Int {
val first = first.compareTo(other.first)
return if (first == 0) {
val second = second.compareTo(other.second)
if (second == 0) third.compareTo(other.third)
else second
} else first
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy