lawlorslaw
12/14/2018, 8:55 AMList<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 ClassNotFoundExceptiongsala
12/14/2018, 8:56 AMlist.sortBy { it.tide }
?