Skip to main content
Version: Java (Groovy)

diffNanos

diffNanos returns the difference in nanoseconds between two date-time values, as an int.

Syntax

diffNanos(start, end)

Parameters

ParameterTypeDescription
startInstant

The start time of the range.

startZonedDateTime

The start time of the range.

endInstant

The end time of the range.

endZonedDateTime

The end time of the range.

Returns

Returns the difference in nanoseconds between the supplied start and end values.

Examples

The following example returns a positive value between two dates.

d1 = parseInstant("2022-01-01T00:00:00 ET")
d2 = parseInstant("2022-01-02T00:00:00 ET")

difference = diffNanos(d1, d2)
println difference