C/C++
sgistl.txt
Associated article: The SGI Standard Template Library
Tags: C/C++
Published source code accompanying the article by Matthew Austern in which he examines the Silicon Graphics release of the STL
_The SGI Standard Template Library_
by Matthew H. Austern
Listing One
int* find1(int* first, int* last, int value)
{
while (first != last && *first != value)
++first;
return first;
}
Listing Two
template <class InputIterator, class T>
InputIterator find(...


