hours
Returns a Duration equal to this Int number of hours.
Since Kotlin
1.6Returns a Duration equal to this Long number of hours.
Since Kotlin
1.6Returns a Duration equal to this Double number of hours.
Depending on its magnitude, the value is rounded to an integer number of nanoseconds or milliseconds.
Since Kotlin
1.6Throws
if this Double value is NaN
.
Deprecated
Warning since 1.6
Use 'Int.hours' extension property from Duration.Companion instead.
Replace with
import kotlin.time.Duration.Companion.hours
value.hours
Returns a Duration representing the specified value number of hours.
Since Kotlin
1.6Deprecated
Warning since 1.6
Use 'Long.hours' extension property from Duration.Companion instead.
Replace with
import kotlin.time.Duration.Companion.hours
value.hours
Returns a Duration representing the specified value number of hours.
Since Kotlin
1.6Deprecated
Warning since 1.6
Use 'Double.hours' extension property from Duration.Companion instead.
Replace with
import kotlin.time.Duration.Companion.hours
value.hours
Returns a Duration representing the specified value number of hours.
Since Kotlin
1.6Throws
if the provided Double
value is NaN
.