Remove a bunch of dead templates.
[oota-llvm.git] / include / llvm / ADT / STLExtras.h
1 //===- llvm/ADT/STLExtras.h - Useful STL related functions ------*- C++ -*-===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains some templates that are useful if you are working with the
11 // STL at all.
12 //
13 // No library is required when using these functinons.
14 //
15 //===----------------------------------------------------------------------===//
16
17 #ifndef LLVM_ADT_STLEXTRAS_H
18 #define LLVM_ADT_STLEXTRAS_H
19
20 #include <functional>
21 #include <utility> // for std::pair
22 #include "llvm/ADT/iterator"
23
24 namespace llvm {
25
26 //===----------------------------------------------------------------------===//
27 //     Extra additions to <functional>
28 //===----------------------------------------------------------------------===//
29
30 // bind_obj - Often times you want to apply the member function of an object
31 // as a unary functor.  This macro is shorthand that makes it happen less
32 // verbosely.
33 //
34 // Example:
35 //  struct Summer { void accumulate(int x); }
36 //  vector<int> Numbers;
37 //  Summer MyS;
38 //  for_each(Numbers.begin(), Numbers.end(),
39 //           bind_obj(&MyS, &Summer::accumulate));
40 //
41 // TODO: When I get lots of extra time, convert this from an evil macro
42 //
43 #define bind_obj(OBJ, METHOD) std::bind1st(std::mem_fun(METHOD), OBJ)
44
45
46 // bitwise_or - This is a simple functor that applys operator| on its two 
47 // arguments to get a boolean result.
48 //
49 template<class Ty>
50 struct bitwise_or : public std::binary_function<Ty, Ty, bool> {
51   bool operator()(const Ty& left, const Ty& right) const {
52     return left | right;
53   }
54 };
55
56 template<class Ty>
57 struct less_ptr : public std::binary_function<Ty, Ty, bool> {
58   bool operator()(const Ty* left, const Ty* right) const {
59     return *left < *right;
60   }
61 };
62
63 template<class Ty>
64 struct greater_ptr : public std::binary_function<Ty, Ty, bool> {
65   bool operator()(const Ty* left, const Ty* right) const {
66     return *right < *left;
67   }
68 };
69
70 // deleter - Very very very simple method that is used to invoke operator
71 // delete on something.  It is used like this: 
72 //
73 //   for_each(V.begin(), B.end(), deleter<Interval>);
74 //
75 template <class T> 
76 static inline void deleter(T *Ptr) { 
77   delete Ptr; 
78 }
79
80
81
82 //===----------------------------------------------------------------------===//
83 //     Extra additions to <iterator>
84 //===----------------------------------------------------------------------===//
85
86 // mapped_iterator - This is a simple iterator adapter that causes a function to
87 // be dereferenced whenever operator* is invoked on the iterator.
88 //
89 template <class RootIt, class UnaryFunc>
90 class mapped_iterator {
91   RootIt current;
92   UnaryFunc Fn;
93 public:
94   typedef typename std::iterator_traits<RootIt>::iterator_category
95           iterator_category;
96   typedef typename std::iterator_traits<RootIt>::difference_type
97           difference_type;
98   typedef typename UnaryFunc::result_type value_type;
99
100   typedef void pointer;
101   //typedef typename UnaryFunc::result_type *pointer;
102   typedef void reference;        // Can't modify value returned by fn
103
104   typedef RootIt iterator_type;
105   typedef mapped_iterator<RootIt, UnaryFunc> _Self;
106
107   inline RootIt &getCurrent() const { return current; }
108
109   inline explicit mapped_iterator(const RootIt &I, UnaryFunc F)
110     : current(I), Fn(F) {}
111   inline mapped_iterator(const mapped_iterator &It)
112     : current(It.current), Fn(It.Fn) {}
113
114   inline value_type operator*() const {   // All this work to do this 
115     return Fn(*current);         // little change
116   }
117
118   _Self& operator++() { ++current; return *this; }
119   _Self& operator--() { --current; return *this; }
120   _Self  operator++(int) { _Self __tmp = *this; ++current; return __tmp; }
121   _Self  operator--(int) { _Self __tmp = *this; --current; return __tmp; }
122   _Self  operator+    (difference_type n) const { return _Self(current + n); }
123   _Self& operator+=   (difference_type n) { current += n; return *this; }
124   _Self  operator-    (difference_type n) const { return _Self(current - n); }
125   _Self& operator-=   (difference_type n) { current -= n; return *this; }
126   reference operator[](difference_type n) const { return *(*this + n); }  
127
128   inline bool operator!=(const _Self &X) const { return !operator==(X); }
129   inline bool operator==(const _Self &X) const { return current == X.current; }
130   inline bool operator< (const _Self &X) const { return current <  X.current; }
131
132   inline difference_type operator-(const _Self &X) const {
133     return current - X.current;
134   }
135 };
136
137 template <class _Iterator, class Func>
138 inline mapped_iterator<_Iterator, Func> 
139 operator+(typename mapped_iterator<_Iterator, Func>::difference_type N,
140           const mapped_iterator<_Iterator, Func>& X) {
141   return mapped_iterator<_Iterator, Func>(X.getCurrent() - N);
142 }
143
144
145 // map_iterator - Provide a convenient way to create mapped_iterators, just like
146 // make_pair is useful for creating pairs...
147 //
148 template <class ItTy, class FuncTy>
149 inline mapped_iterator<ItTy, FuncTy> map_iterator(const ItTy &I, FuncTy F) {
150   return mapped_iterator<ItTy, FuncTy>(I, F);
151 }
152
153
154 // next/prior - These functions unlike std::advance do not modify the
155 // passed iterator but return a copy.
156 //
157 // next(myIt) returns copy of myIt incremented once
158 // next(myIt, n) returns copy of myIt incremented n times
159 // prior(myIt) returns copy of myIt decremented once
160 // prior(myIt, n) returns copy of myIt decremented n times
161
162 template <typename ItTy, typename Dist>
163 inline ItTy next(ItTy it, Dist n)
164 {
165   std::advance(it, n);
166   return it;
167 }
168
169 template <typename ItTy>
170 inline ItTy next(ItTy it)
171 {
172   std::advance(it, 1);
173   return it;
174 }
175
176 template <typename ItTy, typename Dist>
177 inline ItTy prior(ItTy it, Dist n)
178 {
179   std::advance(it, -n);
180   return it;
181 }
182
183 template <typename ItTy>
184 inline ItTy prior(ItTy it)
185 {
186   std::advance(it, -1);
187   return it;
188 }
189
190 //===----------------------------------------------------------------------===//
191 //     Extra additions to <utility>
192 //===----------------------------------------------------------------------===//
193
194 // tie - this function ties two objects and returns a temporary object
195 // that is assignable from a std::pair. This can be used to make code
196 // more readable when using values returned from functions bundled in
197 // a std::pair. Since an example is worth 1000 words:
198 //
199 // typedef std::map<int, int> Int2IntMap;
200 // 
201 // Int2IntMap myMap;
202 // Int2IntMap::iterator where;
203 // bool inserted;
204 // tie(where, inserted) = myMap.insert(std::make_pair(123,456));
205 //
206 // if (inserted)
207 //   // do stuff
208 // else
209 //   // do other stuff
210
211 namespace
212 {
213   template <typename T1, typename T2>
214   struct tier {
215     typedef T1 &first_type;
216     typedef T2 &second_type;
217
218     first_type first;
219     second_type second;
220
221     tier(first_type f, second_type s) : first(f), second(s) { }
222     tier& operator=(const std::pair<T1, T2>& p) {
223       first = p.first;
224       second = p.second;
225       return *this;
226     }
227   };
228 }
229
230 template <typename T1, typename T2>
231 inline tier<T1, T2> tie(T1& f, T2& s) {
232   return tier<T1, T2>(f, s);
233 }
234
235 } // End llvm namespace
236
237 #endif