1 2 3 4 5 6 |
std::sort( examples.begin(), examples.end(), [](const auto& a, const auto& b) { return a->example_title() < b->example_title(); }); |
1 2 3 4 5 6 |
std::sort( examples.begin(), examples.end(), [](const auto& a, const auto& b) { return a->example_title() < b->example_title(); }); |