template NODE * const &LIST::find(const unk& search) const { NODE * index; if(_at_front == NULL){ return _at_front; } index = _at_front; while(index){ if( search == index->value()) return index; index= index->next(); } return NULL; }