Return TypeFunction nameArguments
hzEcodehdbIndexEnum::Delete(unsigned int,const hzAtom&,)

Declared in file: hzDatabase.h
Defined in file : hdbIndex.cpp

Function Logic:

0:START 1:val 2:val<=0||val>m_Maps.Count() 3:Return E_RANGE 4:pS hdbIdset::Delete 5:Return rc

Function body:

hzEcode hdbIndexEnum::Delete (unsigned int objId, const hzAtom& Key)
{
   hdbIdset*   pS ;
   uint32_t    val ;
   hzEcode     rc = E_OK ;
   val = (uint32_t) Key ;
   if (val <&eq; 0|| val > m_Maps.Count())
       return E_RANGE ;
   pS = m_Maps[val] ;
   pS->Delete(objId) ;
   return rc ;
}