Rteurns true if the iterator is at EOF. Returns false otherwise. Arguments: None

Return TypeFunction nameArguments
boolhzXbuf::Iter::eof(void)

Declared in file: hzXbuf.h
Defined in file : hzXbuf.cpp

Function Logic:

0:START 1:!m_block 2:Return true 3:zp 4:!zp 5:Fatal _xblk::Next 6:zp->Next() 7:Return false 8:Return m_nOsetxize?false:true

Function body:

bool hzXbuf::Iter::eof (void)
{
   //  Rteurns true if the iterator is at EOF. Returns false otherwise.
   //  
   //  Arguments: None
   //  
   //  Returns: True If the iterator is at EOF
   //     False If the iterator is still valid
   _hzfunc("hzXbuf::Iter::eof") ;
   _xblk*  zp ;
   if (!m_block)
       return true ;
   zp = (_xblk*) m_block ;
   if (!zp)
       Fatal("Cannot access block %d\n", m_block) ;
   if (zp->Next())
       return false ;
   return m_nOset < zp->xize ? false : true ;
}