Operator overloading for template class linked lists

Hello

How do you overload the following linked lists?

template<class T>
LinkedList<T>& LinkedList<T>::operator+(const LinkedList<T>& other)
{

}

template<class T>
LinkedList<T>& LinkedList<T>::operator=(const LinkedList<T>& other){

}
Last edited on
Topic archived. No new replies allowed.