else return false;
}
friend ostream & operator << (ostream & strm, list<type> &l)
{
l.first();
while (l.current->link != null) strm << *l.next() << " " ;
strm << endl;
l.first();
return strm;
}
protected: