Set a block iterator current block pointer to the current block in the chain

Return TypeFunction nameArguments
hzChain::BlkIter&hzChain::BlkIter::operator=(hzChain&,)

Declared and defined in file: hzChain.h

Function Logic:

0:START 1:unknown 2:m_block 3:m_block 4:Return *this

Function body:

hzChain::BlkIter& hzChain::BlkIter::operator= (hzChain& I)
       {
           //  Set a block iterator current block pointer to the current block in the chain
           if (I.mx)
               m_block = I.mx->m_Begin ;
           else
               m_block = 0;
           return *this ;
       }