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)
const char *const IndexMapTypeMap[]
InputIterator find(InputIterator first, InputIterator last, InputIterator startingpoint, const EqualityComparable &value)
The above copyright notice and this permission notice shall be included.