| Return Type | Function name | Arguments |
|---|---|---|
| const hzString& | hzLookup::GetKey | (int,) |
Declared and defined in file: hzTmplMapL.h
Function Logic:
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] ;
}