<@U223RM5CH> `Boolean.compareTo(Boolean)` behaves ...
# announcements
r
@dragas
Boolean.compareTo(Boolean)
behaves like
Int.compareTo(Int)
does if you replace
true
with
1
and
false
with
0
. I.e.
true.compareTo(false)
returns
1
, the inverse returns
-1
.
👍 1