54template <
class InputIterator,
class EqualityComparable>
55InputIterator
find(InputIterator first, InputIterator last,
56 InputIterator startingpoint,
const EqualityComparable &value)
61 if (startingpoint == first)
63 val =
find(first, last, value);
67 val =
find(startingpoint, last, value);
70 val =
find(first, startingpoint, value);
71 if (val == startingpoint)
91 "EdgeInterior",
"FaceInterior",
92 "Boundary",
"Vertex"};
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.