Set this chain iterator to the start of the supplied chain

Return TypeFunction nameArguments
hzXbuf::Iter&hzXbuf::Iter::operator=(hzXbuf&,)

Declared and defined in file: hzXbuf.h

Function Logic:

0:START 1:unknown 2:m_block 3:m_block 4:m_nLine m_nCol m_nOset 5:Return *this

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 ;
       }