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 TypeFunction nameArguments
voidhzXDate::altmin(int32_t,)

Declared in file: hzDate.h
Defined in file : hzDate.cpp

Function Logic:

0:START 1:items 2: No text

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) ;
}