ProteoWizard
Container.hpp
Go to the documentation of this file.
1 //
2 // $Id: Container.hpp 2051 2010-06-15 18:39:13Z chambm $
3 //
4 //
5 // Original author: Matt Chambers <matt.chambers .@. vanderbilt.edu>
6 //
7 // Copyright 2008 Spielberg Family Center for Applied Proteomics
8 // Cedars Sinai Medical Center, Los Angeles, California 90048
9 // Copyright 2008 Vanderbilt University - Nashville, TN 37232
10 //
11 // Licensed under the Apache License, Version 2.0 (the "License");
12 // you may not use this file except in compliance with the License.
13 // You may obtain a copy of the License at
14 //
15 // http://www.apache.org/licenses/LICENSE-2.0
16 //
17 // Unless required by applicable law or agreed to in writing, software
18 // distributed under the License is distributed on an "AS IS" BASIS,
19 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 // See the License for the specific language governing permissions and
21 // limitations under the License.
22 //
23 
24 #include <vector>
25 #include <list>
26 #include <map>
27 #include <set>
28 #include <deque>
29 #include <stack>
30 #include <algorithm>
31 #include <numeric>
32 #include <utility>
33 #include <boost/foreach.hpp>
34 
35 using std::vector;
36 using std::list;
37 using std::map;
38 using std::multimap;
39 using std::set;
40 using std::multiset;
41 using std::deque;
42 using std::stack;
43 using std::pair;
44 using std::make_pair;
45 
46 using std::find;
47 using std::find_end;
48 using std::find_first_of;
49 using std::find_if;
50 
51 using std::remove;
52 using std::remove_copy;
53 using std::remove_copy_if;
54 using std::remove_if;
55 
56 using std::replace;
57 using std::replace_copy;
58 using std::replace_copy_if;
59 using std::replace_if;
60 
61 using std::for_each;
62 using std::transform;
63 using std::accumulate;
64 using std::sort;
65 using std::stable_sort;
66 
67 using std::binary_search;
68 using std::adjacent_find;
69 
70 using std::equal_range;
71 using std::lower_bound;
72 using std::upper_bound;