start method

void start()

Begin timing. Call this as early as possible (e.g. in main()).

Implementation

void start() {
  if (_isRunning || _hasCompleted) return;
  _isRunning = true;
  _stopwatch.start();
}