I am trying to find the Qt implementation for QLinkedList::operator+( const QLinkedList<T> &list )
, but I can't make sense of the Qt source code. This is part of Qt 4.8.4:
I found the declaration in the .h:
QLinkedList<T> operator+(const QLinkedList<T> &l) const;
But in the .cpp all I see is this:
/*! \fn QLinkedList<T> QLinkedList::operator+(const QLinkedList<T> &other) const
Returns a list that contains all the items in this list followed
by all the items in the \a other list.
\sa operator+=()
*/
Where is the definition? What organization is Qt using?