Home | History | Annotate | Download | only in binary.search

Lines Matching refs:Iter

12 // template<ForwardIterator Iter, class T, CopyConstructible Compare>
13 // requires Predicate<Compare, T, Iter::value_type>
14 // && Predicate<Compare, Iter::value_type, T>
16 // binary_search(Iter first, Iter last, const T& value, Compare comp);
25 template <class Iter, class T>
27 test(Iter first, Iter last, const T& value, bool x)
32 template <class Iter>
48 test(Iter(v.data()), Iter(v.data()+v.size()), x, true);
49 test(Iter(v.data()), Iter(v.data()+v.size()), -1, false);
50 test(Iter(v.data()), Iter(v.data()+v.size()), M, false);