Adds or subtracts two TickDurations.
The legal types of arithmetic for TickDuration using this operator overload are
The legal types of arithmetic for TickDuration using this operator overload are
Returns a Duration with the same number of hnsecs as this TickDuration. Note that the conventional way to convert between TickDuration and Duration is using std.conv.to, e.g.: tickDuration.to!Duration()
operator overloading "<, >, <=, >="
Adds or subtracts two TickDurations as well as assigning the result to this TickDuration.
The legal types of arithmetic for TickDuration using this operator overload are
The legal types of arithmetic for TickDuration using this operator overload are
Returns the negation of this TickDuration.
The current system tick. The number of ticks per second varies from system to system. currSystemTick uses a monotonic clock, so it's intended for precision timing by comparing relative time values, not for getting the current system time.
Returns the total number of hecto-nanoseconds in this TickDuration.
Largest TickDuration possible.
Most negative TickDuration possible.
Returns the total number of milliseconds in this TickDuration.
Returns the total number of nanoseconds in this TickDuration.
Returns the total number of seconds in this TickDuration.
Returns the total number of microseconds in this TickDuration.
It's the same as TickDuration(0), but it's provided to be consistent with Duration, which provides a zero property.
This allows you to construct a TickDuration from the given time units with the given length.
The tick of the system clock (as a TickDuration) when the application started.
The number of ticks that the system clock has in one second.
The number of system ticks in this TickDuration.
Warning: TickDuration is deprecated. Please use MonoTime for the cases where a monotonic timestamp is needed and Duration when a duration is needed, rather than using TickDuration.
Represents a duration of time in system clock ticks.
The system clock ticks are the ticks of the system clock at the highest precision that the system provides.