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: 448eb2e49ff0be737be8c362900da0d0a040667d (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
#pragma once
#include "common_defines.hpp"

#ifdef new
#undef new
#endif

#include <algorithm>

using std::equal;
using std::lower_bound;
using std::max;
using std::max_element;
using std::min;
using std::next_permutation;
using std::sort;
using std::swap;
using std::upper_bound;
using std::unique;
using std::equal_range;
using std::for_each;
using std::copy;
using std::set_union;
using std::set_intersection;
using std::set_difference;
using std::set_symmetric_difference;
using std::reverse;

#ifdef DEBUG_NEW
#define new DEBUG_NEW
#endif