inline operator fun OffsetDateTime.component1(): LocalDateTime
Return the LocalDateTime of this OffsetDateTime.
This method allows to use destructuring declarations when working with offset date/times, for example:
val (dateTime, offset) = myOffsetTime
See Also