toComponents

Breaks a UTC offset down into components. The sign will indicate whether the offset is positive or negative while each component will be positive.

inline fun <T> toComponents(action: (Int, IntHours, IntMinutes, IntSeconds) -> T): T

Breaks a UTC offset down into components. If the offset is negative, each component will be negative.

inline fun <T> toComponents(action: (IntHours, IntMinutes, IntSeconds) -> T): T