Welcome to mirror list, hosted at ThFree Co, Russian Federation.

algorithm.hpp « std - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 69588650b7006aeed25b4be8397dbbcb4d3f57c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#pragma once
#include "common_defines.hpp"

#ifdef new
#undef new
#endif

#include <algorithm>

using std::equal;
using std::find;
using std::find_if;
using std::lexicographical_compare;
using std::lower_bound;
using std::max;
using std::max_element;
using std::min;
using std::next_permutation;
using std::sort;
using std::stable_sort;
using std::partial_sort;
using std::swap;
using std::upper_bound;
using std::unique;
using std::equal_range;
using std::for_each;
using std::copy;
using std::remove_if;
using std::replace;
using std::reverse;
using std::set_union;
using std::set_intersection;
using std::set_difference;
using std::set_symmetric_difference;
using std::swap;
using std::transform;
using std::push_heap;
using std::pop_heap;
using std::sort_heap;

#ifdef DEBUG_NEW
#define new DEBUG_NEW
#endif