Make an iterator equal to the beginning of the supplied list
| Return Type | Function name | Arguments |
|---|---|---|
| hzList::Iter<OBJ>& | hzList::Iter::operator= | (hzList<OBJ>&,) |
Declared and defined in file: hzTmplList.h
Function Logic:
Function body:
hzList::Iter<OBJ>& hzList::Iter::operator= (hzList<OBJ>& sup)
{
// Make an iterator equal to the beginning of the supplied list
m_pHandle = sup.mx ;
m_pCurr = m_pHandle ? m_pHandle->m_pList : 0;
return *this ;
}