Locate the bitmap for the word and assign it to the result
| Return Type | Function name | Arguments |
|---|---|---|
| hzEcode | hdbIndexText::Select | (hzIntset&,hzString&,) |
Declared in file: hzDatabase.h
Defined in file : hdbIndex.cpp
Function Logic:
Function body:
hzEcode hdbIndexText::Select (hzIntset& Result)hzString& word,
{
// Locate the bitmap for the word and assign it to the result
hzString lcword ; // The word but all in lower case
lcword = word ;
lcword.ToLower() ;
Result.Clear() ;
if (m_Keys.Exists(lcword))
Result = m_Keys[lcword] ;
return E_OK ;
}