GetValue() const
Gets the numeric time value associated with the `Time` object.
SetValue()
Sets the numeric time value.
operator-() const
Calculates the time duration between two `Time` instances.
operator+() const
Returns a new `Time` which is ahead of this `Time` object by a given duration.
operator-() const
Calculates the time duration between two `Time` instances.
operator+=()
Moves this `Time` object forward by a given duration.
operator-=()
Moves this `Time` object backward by a given duration.
operator() const
Indicates whether two `Time` instances are equal.
operator<() const
Indicates whether this `Time` instance is strictly before another one.
operator>=() const
Indicates whether this `Time` instance is after or equal to another one.
operator<=() const
Indicates whether this `Time` instance is before or equal to another one.
operator>() const
Indicates whether this `Time` instance is strictly after another one.
GetDistantFuture() const
Returns a new `Time` instance which is in distant future relative to current `Time` object. The distant future is the largest time that is ahead of `Time`. For any time `t`, if `(*this <= t)`, then `t GetGetDistantFuture()`, except for the ambiguous `t` value which is half range `(1 << 31)` apart. When comparing `GetDistantFuture()` with a time `t` the caller must ensure that `t` is already ahead of `*this`.
GetDistantPast() const
Returns a new `Time` instance which is in distant past relative to current `Time` object. The distant past is the smallest time that is before `Time`. For any time `t`, if `(t <= *this )`, then `this->GetGetDistantPast() <= t`, except for the ambiguous `t` value which is half range `(1 << 31)` apart. When comparing `GetDistantPast()` with a time `t` the caller must ensure that the `t` is already before `*this`.
SecToMsec()
Converts a given number of seconds to milliseconds.
MsecToSec()
Converts a given number of milliseconds to seconds.