Definition at line 32 of file Time.h.
◆ hoursPerDay()
| constexpr Int32 hoursPerDay |
( |
| ) |
|
|
inlinestaticconstexprnoexcept |
- Returns
- the number of hours in a day.
Definition at line 78 of file Time.h.
◆ microsecondsPerSecond()
| constexpr Int32 microsecondsPerSecond |
( |
| ) |
|
|
inlinestaticconstexprnoexcept |
- Returns
- the number of microseconds in a second.
Definition at line 106 of file Time.h.
107 {
108 return 1000000;
109 }
◆ millisecondsPerSecond()
| constexpr Int32 millisecondsPerSecond |
( |
| ) |
|
|
inlinestaticconstexprnoexcept |
- Returns
- the number of milliseconds in a second.
Definition at line 99 of file Time.h.
100 {
101 return 1000;
102 }
◆ minutesPerHour()
| constexpr Int32 minutesPerHour |
( |
| ) |
|
|
inlinestaticconstexprnoexcept |
- Returns
- the number of minutes in an hour.
Definition at line 85 of file Time.h.
◆ nanosecondsPerDay()
| constexpr Int64 nanosecondsPerDay |
( |
| ) |
|
|
inlinestaticconstexprnoexcept |
- Returns
- the number of nanoseconds in a day.
Definition at line 36 of file Time.h.
37 {
38 return 86400000000000ll;
39 }
◆ nanosecondsPerHour()
| constexpr Int64 nanosecondsPerHour |
( |
| ) |
|
|
inlinestaticconstexprnoexcept |
- Returns
- the number of nanoseconds in an hour.
Definition at line 43 of file Time.h.
44 {
45 return 3600000000000ll;
46 }
◆ nanosecondsPerMicrosecond()
| constexpr Int32 nanosecondsPerMicrosecond |
( |
| ) |
|
|
inlinestaticconstexprnoexcept |
- Returns
- the number of nanoseconds in a microsecond.
Definition at line 71 of file Time.h.
72 {
73 return 1000;
74 }
◆ nanosecondsPerMillisecond()
| constexpr Int32 nanosecondsPerMillisecond |
( |
| ) |
|
|
inlinestaticconstexprnoexcept |
- Returns
- the number of nanoseconds in a millisecond.
Definition at line 64 of file Time.h.
65 {
66 return 1000000;
67 }
◆ nanosecondsPerMinute()
| constexpr Int64 nanosecondsPerMinute |
( |
| ) |
|
|
inlinestaticconstexprnoexcept |
- Returns
- the number of nanoseconds in a minute.
Definition at line 50 of file Time.h.
51 {
52 return 60000000000ll;
53 }
◆ nanosecondsPerSecond()
| constexpr Int32 nanosecondsPerSecond |
( |
| ) |
|
|
inlinestaticconstexprnoexcept |
- Returns
- the number of nanoseconds in a second.
Definition at line 57 of file Time.h.
58 {
59 return 1000000000;
60 }
◆ secondsPerMinute()
| constexpr Int32 secondsPerMinute |
( |
| ) |
|
|
inlinestaticconstexprnoexcept |
- Returns
- the number of seconds in a minute.
Definition at line 92 of file Time.h.