Return TypeFunction nameArguments
hzEcodehdbIndexText::Select(hdbIdset&,const hzString&,)

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

Function Logic:

0:START 1:lcword hzString::ToLower hdbIdset::Clear hzMapS::Exists 2:m_Keys.Exists(lcword) 3:Result 4:Return E_OK

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 ;
}