public TOMLLocalTime(hour as Int, minute as Int, second as Int = 0, usecond as Int = 0):
Creates a timezone-independent time of day.
| Parameter | Description |
|---|---|
hour | Hour in range 0 through 23. |
minute | Minute in range 0 through 59. |
second | Second in range 0 through 59. |
usecond | Microseconds in range 0 through 999999. |
time = TOMLLocalTime(23, 59, 58) assert time.hour == 23