BloombergLP::bdlt::DatetimeInterval::setInterval

Set this time interval to the specified field values.

Synopsis

Declared in <bdlt_datetimeinterval.h>

void
setInterval(
    int days,
    bsls::Types::Int64 hours = 0,
    bsls::Types::Int64 minutes = 0,
    bsls::Types::Int64 seconds = 0,
    bsls::Types::Int64 milliseconds = 0,
    bsls::Types::Int64 microseconds = 0);

Description

Set the time interval represented by this object to the value given by the specified days, and the optionally specified hours, minutes, seconds, milliseconds, and microseconds. Unspecified arguments default to 0. The behavior is undefined unless the resulting time interval value is valid (i.e., the days field must not overflow a 32-bit integer). Note that the arguments may be supplied using a mixture of positive, negative, and 0 values.

Parameters

NameDescription
daysday count
hourshour count (optional)
minutesminute count (optional)
secondssecond count (optional)
millisecondsmillisecond count (optional)
microsecondsmicrosecond count (optional)