Time
Constructs a time value.
Variants
- Time(Numeric hour, Numeric minute)
- Time(Numeric hour, Numeric minute, Numeric second)
- Time(Numeric seconds)
Time(Numeric hour, Numeric minute)
Constructs a time from the hour and minute components.
Parameters
- hour
- The number representing the hour.
- minute
- The number representing the minute.
Returns
Time
Examples
Time(22, 15)
returns 22:15.
Time(Numeric hour, Numeric minute, Numeric second)
Constructs a time from the hour, minute, and second components.
Parameters
- hour
- The number representing the hour.
- minute
- The number representing the minute.
- second
- The number representing the second.
Returns
Time
Examples
Time(22, 15, 5)
returns 22:15:05.
Time(Numeric seconds)
Constructs a time from the number of seconds since midnight.
Parameters
- seconds
- The number representing the seconds since midnight.
Returns
Time
Examples
Time(246)
returns 00:04:06.