DEBSOURCES
Skip Quicknav
sources / c%2B%2B-annotations / 12.2.0-2 / yo / threading / examples / multisort / display.cc
12345678910
#include "main.ih" void display() { size_t nr = 0; for (auto el: g_data) cerr << el << (++nr % 10 == 0 ? '\n' : ' '); cerr << '\n'; }