1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-07-01 07:46:43 +02:00

Add sugar to Depth

This commit is contained in:
Paul Schaub 2023-07-05 17:47:43 +02:00
parent 1773bbcd32
commit 4488f37394
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -78,18 +78,11 @@ class Depth private constructor(val limit: Int?) : Comparable<Depth> {
} }
override fun compareTo(other: Depth): Int { override fun compareTo(other: Depth): Int {
return if (isUnconstrained()) { return when (Pair(isUnconstrained(), other.isUnconstrained())) {
if (other.isUnconstrained()) { Pair(true, true) -> 0
0 Pair(true, false) -> 1
} else { Pair(false, true) -> -1
1 else -> limit!!.compareTo(other.limit!!)
}
} else {
if (other.isUnconstrained()) {
-1
} else {
limit!!.compareTo(other.limit!!)
}
} }
} }