7 List<T>::List(List const&src)
10 // probably el stupido
11 for (Cursor<T> c(src); c.ok(); c++)
48 List<T>::add( const T& thing, Cursor<T> &after_me )
50 if (!size_) { // not much choice if list is empty
51 bottom_ = top_ = new Link<T>( thing );
54 } else { // add at aprioprate place
57 Link<T> *p =after_me.pointer();
59 if (p == bottom_) // adjust bottom_ if necessary.
69 \item if #after_me# is #ok()#, add after #after_me#, else
70 \item if list !empty simply add to bottom, else
71 \item list is empty: create first \Ref{Link} and initialize
78 List<T>::insert( const T& thing, Cursor<T> &before_me )
81 bottom_ = top_ = new Link<T>( thing );
89 Link<T> *p = before_me.pointer() ;
102 List<T>::concatenate(List<T> const&s)
104 Cursor<T> b(bottom());
105 for (Cursor<T> c(s); c.ok(); c++) {