xs.dateTime.add

xs.dateTime.add(
   value as xs.yearMonthDuration|xs.dayTimeDuration
) as xs.dateTime

Summary

Returns the end of a time period by adding an xs.yearMonthDuration to the xs.dateTime that starts the period. Returns the end of a time period by adding an xs.dayTimeDuration to the xs.dateTime that starts the period.

Parameters
value year month duration or day time duration.

Example

const v1 = xs.dateTime(xs.date('2013-08-15'), xs.time('12:30:45-05:00'));
const v2 = xs.yearMonthDuration("P3Y3M");
v1.add(v2);
Powered by MarkLogic Server | Terms of Use | Privacy Policy