invoke

operator fun invoke(year: Int, month: Int, day: Int): Date
operator fun invoke(year: Int, month: Month, day: Int): Date
operator fun invoke(year: Year, month: Month, day: Int): Date

Constructs a new Date from the year, month and day components.


operator fun invoke(yearMonth: YearMonth, day: Int): Date

Constructs a new Date from the yearMonth and day components.