Return TypeFunction nameArguments
const hzString&hzLookup::GetKey(int,)

Declared and defined in file: hzTmplMapL.h

Function Logic:

0:START 1:_hz_tmpl_ISAM::_findDnodeByPos pDN 2:!pDN 3:m_DefaultKey 4:Return m_DefaultKey 5:pBuck 6:Return pBuck->m_Keys[nSlot]

Function body:

const hzString& hzLookup::GetKey (int nIndex)
   {
       _hz_map_bkt<hzString,OBJ>*  pBuck ;
       _hz_vn_Dat* pDN ;
       int32_t     nSlot ;
       pDN = base._findDnodeByPos(nSlot, nIndex, false) ;
       if (!pDN)
       {
           m_DefaultKey = m_NullKey ;
           return m_DefaultKey ;
       }
       pBuck = (_hz_map_bkt<hzString,OBJ>*) pDN->m_pElements ;
       return pBuck->m_Keys[nSlot] ;
   }