Locate the bitmap for the word and delete the object id from it.

Return TypeFunction nameArguments
hzEcodehdbIndexText::Delete(hzString&,uint32_t,)

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

Function Logic:

0:START 1:lcword items 2:unknown 3:bm items 4:Return E_OK 5:Return E_NOTFOUND

Function body:

hzEcode hdbIndexText::Delete (hzString& word)uint32_t docId, 
{
   //  Locate the bitmap for the word and delete the object id from it.
   hzIntset    bm ;        //  The bitmap associated with the word
   hzString    lcword ;    //  The word but all in lower case
   lcword = word ;
   lcword.ToLower() ;
   if (m_Keys.Exists(lcword))
   {
       bm = m_Keys[lcword] ;
       bm.Delete(docId) ;
       return E_OK ;
   }
   return E_NOTFOUND ;
}