The units to convert to. Accepts "seconds" and smaller only.
The type to convert to (either an integral type or a floating point type).
The TickDuration to convert
auto t = TickDuration.from!"seconds"(1000); long tl = to!("seconds",long)(t); assert(tl == 1000); import core.stdc.math : fabs; double td = to!("seconds",double)(t); assert(fabs(td - 1000) < 0.001);
TickDuration is DEPRECATED
Converts a TickDuration to the given units as either an integral value or a floating point value.