Set this chain iterator to the start of the supplied chain
| Return Type | Function name | Arguments |
|---|---|---|
| hzXbuf::Iter& | hzXbuf::Iter::operator= | (hzXbuf&,) |
Declared and defined in file: hzXbuf.h
Function Logic:
Function body:
hzXbuf::Iter& hzXbuf::Iter::operator= (hzXbuf& I)
{
// Set this chain iterator to the start of the supplied chain
if (I.mx)
m_block = I.mx->m_Begin ;
else
m_block = 0;
m_nLine = 1;
m_nCol = 0;
m_nOset = 0;
return *this ;
}