weeksBetween

fun weeksBetween(start: Date, endExclusive: Date): LongWeeks

Gets the number of whole weeks between two dates.

fun weeksBetween(start: DateTime, endExclusive: DateTime): LongWeeks

Gets the number whole weeks between two date-times, assuming they're in the same time zone.

fun weeksBetween(start: OffsetDateTime, endExclusive: OffsetDateTime): LongWeeks

Gets the number whole weeks between two date-times, adjusting the offset of endExclusive if necessary to match the starting date-time.

fun weeksBetween(start: ZonedDateTime, endExclusive: ZonedDateTime): LongWeeks

Gets the number of whole weeks between two zoned date-times, adjusting the time zone of endExclusive if necessary to match the starting date-time.