OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_LIST_H_ | 5 #ifndef V8_LIST_H_ |
6 #define V8_LIST_H_ | 6 #define V8_LIST_H_ |
7 | 7 |
8 #include <algorithm> | 8 #include <algorithm> |
9 | 9 |
10 #include "src/checks.h" | 10 #include "src/checks.h" |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 // list. Returns the index of the element of -1 if it was not found. | 222 // list. Returns the index of the element of -1 if it was not found. |
223 // |cmp| is a predicate that takes a pointer to an element of the List | 223 // |cmp| is a predicate that takes a pointer to an element of the List |
224 // and returns +1 if it is greater, -1 if it is less than the element | 224 // and returns +1 if it is greater, -1 if it is less than the element |
225 // being searched. | 225 // being searched. |
226 template <typename T, class P> | 226 template <typename T, class P> |
227 int SortedListBSearch(const List<T>& list, P cmp); | 227 int SortedListBSearch(const List<T>& list, P cmp); |
228 template <typename T> | 228 template <typename T> |
229 int SortedListBSearch(const List<T>& list, T elem); | 229 int SortedListBSearch(const List<T>& list, T elem); |
230 | 230 |
231 | 231 |
232 } } // namespace v8::internal | 232 } // namespace internal |
| 233 } // namespace v8 |
233 | 234 |
234 | 235 |
235 #endif // V8_LIST_H_ | 236 #endif // V8_LIST_H_ |
OLD | NEW |