seconds

Returns the given seconds in milliseconds *

@property @nogc
uint
seconds
pure nothrow
(
uint n
)

Examples

int n = 5.seconds; // n is 5000 because 5 seconds are 5000 milliseconds

*

StopWatch sw;
sw.wait(5.seconds);

Meta