Test if the given Temporal.Instant comes after a certain moment in time.
If other is unspecified, compare with the current time.
other
If other is a Temporal.Duration, compare with that duration added to the current time.
If other is a Temporal.Instant, compare with that instant.
Optional
time.isAfter(instant) // is `instant` in the future?time.isAfter(instant, otherInstant) // is `instant` after `otherInstant`?time.isAfter(instant, duration) // is `instant` more than `duration` into the future? Copy
time.isAfter(instant) // is `instant` in the future?time.isAfter(instant, otherInstant) // is `instant` after `otherInstant`?time.isAfter(instant, duration) // is `instant` more than `duration` into the future?
Test if the given Temporal.Instant comes after a certain moment in time.
If
otheris unspecified, compare with the current time.If
otheris a Temporal.Duration, compare with that duration added to the current time.If
otheris a Temporal.Instant, compare with that instant.