Try the revamped Kotlin docs design →
Try the revamped Kotlin docs design!
minutes
Returns a Duration equal to this Int number of minutes.
Returns a Duration equal to this Double number of minutes.
Depending on its magnitude, the value is rounded to an integer number of nanoseconds or milliseconds.
Exceptions
IllegalArgumentException
- if this Double value is NaN
.
@ExperimentalTime @DeprecatedSinceKotlin("1.6", "1.8", "1.9") fun minutes(
value: Int
): Duration
(source)
Deprecated: Use 'Int.minutes' extension property from Duration.Companion instead.
@ExperimentalTime @DeprecatedSinceKotlin("1.6", "1.8", "1.9") fun minutes(
value: Long
): Duration
(source)
Deprecated: Use 'Long.minutes' extension property from Duration.Companion instead.
Returns a Duration representing the specified value number of minutes.
@ExperimentalTime @DeprecatedSinceKotlin("1.6", "1.8", "1.9") fun minutes(
value: Double
): Duration
(source)
Deprecated: Use 'Double.minutes' extension property from Duration.Companion instead.
Returns a Duration representing the specified value number of minutes.
Exceptions
IllegalArgumentException
- if the provided Double
value is NaN
.