/
auroraos
/
mirror_range-v3
Обзор
Документация
Войти
/
auroraos
/
mirror_range-v3
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
master
example/sort_unique.cpp
34 строки
946 B
Eric Niebler
view and action examples; workaround for gcc-7/8 ICE, fixes #1105 (#1274)
23 авг 2019, 07:24
Не верифицирован
23 авг 2019, 07:24
e3f7291
Код
Авторство
О чём код?
// Range v3 library // // Copyright Eric Niebler 2019 // // Use, modification and distribution is subject to the // Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // // Project home: https://github.com/ericniebler/range-v3 // ///[sort_unique] // Remove all non-unique elements from a container. #include <iostream> #include <vector> #include <range/v3/action/sort.hpp> #include <range/v3/action/unique.hpp> #include <range/v3/view/all.hpp> using std::cout; int main() { std::vector<int> vi{9, 4, 5, 2, 9, 1, 0, 2, 6, 7, 4, 5, 6, 5, 9, 2, 7, 1, 4, 5, 3, 8, 5, 0, 2, 9, 3, 7, 5, 7, 5, 5, 6, 1, 4, 3, 1, 8, 4, 0, 7, 8, 8, 2, 6, 5, 3, 4, 5}; using namespace ranges; vi |= actions::sort | actions::unique; // prints: [0,1,2,3,4,5,6,7,8,9] cout << views::all(vi) << '\n'; } ///[sort_unique]