to Components
inline fun <T> toComponents(action: (sign: Int, hours: IntHours, minutes: IntMinutes, seconds: IntSeconds) -> T): T
Content copied to clipboard
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: (hours: IntHours, minutes: IntMinutes, seconds: IntSeconds) -> T): T
Content copied to clipboard
Breaks a UTC offset down into components. If the offset is negative, each component will be negative.