content/flux/v0/stdlib/experimental/addduration.md
experimental.addDuration() adds a duration to a time value and returns the resulting time value.
{{% warn %}}
experimental.addDuration() is deprecated in favor of date.add().
{{% /warn %}}
(d: duration, to: A, ?location: {zone: string, offset: duration}) => time where A: Timeable
{{% caption %}} For more information, see Function type signatures. {{% /caption %}}
({{< req >}}) Duration to add.
({{< req >}}) Time to add the duration to.
Location to use for the time value.
Use an absolute time or a relative duration.
Durations are relative to now().
import "experimental"
experimental.addDuration(d: 6h, to: 2019-09-16T12:00:00Z)// Returns 2019-09-16T18:00:00.000000000Z
A time may be represented as either an explicit timestamp
or as a relative time from the current now time. addDuration can
support either type of value.
import "experimental"
option now = () => 2021-12-10T16:27:40Z
experimental.addDuration(d: 1mo, to: -1d)// Returns 2022-01-09T16:27:40Z
import "experimental"
option now = () => 2022-01-01T12:00:00Z
experimental.addDuration(d: 6h, to: 3h)// Returns 2022-01-01T21:00:00.000000000Z