nanoseconds

Returns a Duration equal to this Int number of nanoseconds.

Since Kotlin

1.6

Returns a Duration equal to this Long number of nanoseconds.

Since Kotlin

1.6

Returns a Duration equal to this Double number of nanoseconds.

Depending on its magnitude, the value is rounded to an integer number of nanoseconds or milliseconds.

Since Kotlin

1.6

Throws

if this Double value is NaN.


Deprecated

Warning since 1.6

Use 'Int.nanoseconds' extension property from Duration.Companion instead.

Replace with

import kotlin.time.Duration.Companion.nanoseconds
value.nanoseconds

Returns a Duration representing the specified value number of nanoseconds.

Since Kotlin

1.6

Deprecated

Warning since 1.6

Use 'Long.nanoseconds' extension property from Duration.Companion instead.

Replace with

import kotlin.time.Duration.Companion.nanoseconds
value.nanoseconds

Returns a Duration representing the specified value number of nanoseconds.

Since Kotlin

1.6

Deprecated

Warning since 1.6

Use 'Double.nanoseconds' extension property from Duration.Companion instead.

Replace with

import kotlin.time.Duration.Companion.nanoseconds
value.nanoseconds

Returns a Duration representing the specified value number of nanoseconds.

Since Kotlin

1.6

Throws

if the provided Double value is NaN.