minutes

Returns the given minutes in milliseconds

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

Examples

int n = 5.minutes; // n is 300_000 because 5 minutes are 300 seconds are 300_000 milliseconds
StopWatch sw;
sw.wait(5.minutes);

Meta