Is there a prettier way to do `a.compareTo(b) == 0...
# getting-started
k
Is there a prettier way to do
a.compareTo(b) == 0
where
a
and
b
are `Comperable`s? I know
<
and
>
uses compareTo, but can I do so with
==
?