plus

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

Adds the other value to this value.

Since

1.1.0


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

Adds the Duration value to this Calendar.

Since

1.1.0


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

Adds the Duration value to this Date.

Since

1.1.0