korlibs / korge

KorGE Game Engine. Multiplatform Kotlin Game Engine
https://korge.org/
Other
2.54k stars 125 forks source link

YearMonth should implement Comparable<YearMonth> #671

Open dalewking opened 3 years ago

dalewking commented 3 years ago

Was trying to use ClosedRange<YearMonth> only to realize that YearMonth does not support comparison

soywiz commented 3 years ago

Thanks for reporting. Can you make a PR implementing that interface?

dalewking commented 3 years ago

You seriously need a PR for adding Comparable<YearMonth> and this function:

override fun compareTo(other: YearMonth): Int = internalPackedInfo.compareTo(other.internalPackedInfo)