| 200 | } |
| 201 | |
| 202 | constexpr ui32 MicroSecondsOfSecond() const noexcept { |
| 203 | return MicroSeconds() % (TValue)1000000; |
| 204 | } |
| 205 | |
| 206 | constexpr ui32 MilliSecondsOfSecond() const noexcept { |
| 207 | return MicroSecondsOfSecond() / (TValue)1000; |
no test coverage detected