if i have a `List<Tide>` where a `Tide` has ...
# announcements
l
if i have a
List<Tide>
where a
Tide
has a field
tide
that is of type
Float
, what is the best way to sort by the
tide
field? I tried
tides.sortedBy { it.tide }
but it throws a ClassNotFoundException
g
list.sortBy { it.tide }
?