Locate the bitmap for the word and assign it to the result

Return TypeFunction nameArguments
hzEcodehdbIndexText::Select(hzIntset&,hzString&,)

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

Function Logic:

0:START 1:lcword items items 2:unknown 3:Result 4:Return E_OK

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