Advance or retard a hzXDate by a number of minutes. This will alter the day date if the alteration is sufficient to cross one or more midnight boundaries. Returns: None
| Return Type | Function name | Arguments |
|---|---|---|
| void | hzXDate::altmin | (int32_t,) |
Declared in file: hzDate.h
Defined in file : hzDate.cpp
Function Logic:
Function body:
void hzXDate::altmin (int32_t nounits)
{
// Advance or retard a hzXDate by a number of minutes. This will alter the day date if the alteration is sufficient to cross one or more
// midnight boundaries.
//
// Arguments: 1) nounits Number of units (minutes) into future/past
// Returns: None
altsec(60*nounits) ;
}