Return TypeFunction nameArguments
OBJ*hzVect::InSitu(unsigned int,)

Declared and defined in file: hzTmplVect.h

Function Logic:

0:START 1:_hz_tmpl_ISAM::_findDnodeByPos pDN 2:!pDN 3:Return 0 4:pBuck pObj pObj 5:Return pObj

Function body:

OBJ* hzVect::InSitu (unsigned int nIndex)
   {
       _hz_set_bkt<OBJ>*   pBuck ;
       OBJ*                pObj ;
       _hz_vn_Dat* pDN ;
       int32_t     nSlot ;
       pDN = base._findDnodeByPos(nSlot, nIndex, false) ;
       if (!pDN)
           return 0;
       pBuck = (_hz_set_bkt<OBJ>*) pDN->m_pElements ;
       pObj = (OBJ*) pBuck->m_Keys ;
       pObj += nSlot ;
       return pObj ;
   }