DEBSOURCES
Skip Quicknav
sources / c%2B%2B-annotations / 10.6.0-1 / 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'; }