The OpenD Programming Language

AutoStart

Used by StopWatch to indicate whether it should start immediately upon construction.

If set to AutoStart.no, then the StopWatch is not started when it is constructed.

Otherwise, if set to AutoStart.yes, then the StopWatch is started when it is constructed.

import std.datetime.stopwatch;
alias AutoStart = Flag!"autoStart"

Meta