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