|
HAZE
haze is a drop-in replacement to process water vapor to be used with FORCE
|
Functions | |
| bool | isValidDate (int year, int month, int day) |
| Test if given combination of year, month and day is a valid date. | |
| bool isValidDate | ( | int | year, |
| int | month, | ||
| int | day ) |
Test if given combination of year, month and day is a valid date.
This function tests whether a combination of year, month and date does represent a valid date by checking if the year is a value greater or equal to 0 the month is in the interval [1, 12] and the day is in the range from 1 to the corresponding number of maximum days per month (leap year adjusted).
| year | Value denoting year. |
| month | Value denoting month. |
| day | Value denoting day. |