1 template<class T, class U>
3 FindCursor<T, U>::FindCursor( List<T>& list, Link<T>* pointer ) :
4 Cursor<T>( list, pointer )
8 template<class T, class U>
10 FindCursor<T, U>::FindCursor( const Cursor<T>& cursor ) :
15 template<class T, class U>
17 FindCursor<T, U>::operator =( const Cursor<T>& c )
19 ( (Cursor<T>&)*this ) = c;
23 template<class T, class U>
24 inline FindCursor<T, U>
25 FindCursor<T, U>::find( const T& thing )
31 if ( U::equal( look, thing ) )
36 return FindCursor( *this ); // cursor is not .ok()