34 #ifndef LOCALREGIONS_H 35 #define LOCALREGIONS_H 41 namespace LocalRegions
54 template<
class InputIterator,
class EqualityComparable>
55 InputIterator
find(InputIterator first, InputIterator last,
56 InputIterator startingpoint,
57 const EqualityComparable& value)
62 if(startingpoint == first)
64 val =
find(first,last,value);
68 val =
find(startingpoint,last,value);
71 val =
find(first,startingpoint,value);
72 if(val == startingpoint)
84 #endif //LOCALREGIONS_H
InputIterator find(InputIterator first, InputIterator last, InputIterator startingpoint, const EqualityComparable &value)