Return Type | Function name | Arguments |
---|---|---|
hzEcode | hdbIndexText::Delete | (const hzString&,unsigned int,) |
Declared in file: hzDatabase.h
Defined in file : hdbIndex.cpp
Function Logic:
Function body:
hzEcode hdbIndexText::Delete (const hzString& word, unsigned int docId) { hdbIdset bm ; hzString lcword ; lcword = word ; lcword.ToLower() ; if (m_Keys.Exists(lcword)) { bm = m_Keys[lcword] ; bm.Delete(docId) ; return E_OK ; } return E_NOTFOUND ; }