SimpleDate
data class SimpleDate(val year: Int, val month: Int, val dayOfMonth: Int = 1) : Comparable<SimpleDate> (source)
Represents a simple date with year, month, and day of the month.
Functions
Link copied to clipboard
Link copied to clipboard
Returns the position of a SimpleDate within given years range.