minus

operator fun Calendar.minus(other: Calendar): Calendar
operator fun Date.minus(other: Date): Date
operator fun LocalDate.minus(duration: Duration): LocalDate
operator fun LocalDateTime.minus(duration: Duration): LocalDateTime
operator fun LocalTime.minus(duration: Duration): LocalTime

Subtracts the other value from this value.

Since

1.1.0


operator fun Calendar.minus(other: Duration): Calendar

Subtracts the Duration value from this Calendar.

Since

1.1.0


operator fun Date.minus(other: Duration): Date

Subtracts the Duration value from this Date.

Since

1.1.0