std::vector RunnerWatcher::GetNonWarmupsOperations()

in e2e-examples/gcs/benchmark/runner_watcher.cc [73:81]


std::vector<RunnerWatcher::Operation> RunnerWatcher::GetNonWarmupsOperations()
    const {
  absl::MutexLock l(&lock_);
  if (warmups_ >= operations_.size()) {
    return {};
  }
  return std::vector<RunnerWatcher::Operation>(operations_.begin() + warmups_,
                                               operations_.end());
}