Return TypeFunction nameArguments
boolhzLookup::Exists(const hzString&,)

Declared and defined in file: hzTmplMapL.h

Function Logic:

0:START 1:_hz_tmpl_ISAM::_findDnodeByKey pDN 2:!pDN 3:Return false 4:Return true

Function body:

bool hzLookup::Exists (const hzString& key)
   {
       _hz_vn_Dat* pDN ;
       int32_t     nSlot ;
       pDN = base._findDnodeByKey(nSlot, &key, HZ_ISAMSRCH_LO) ;
       if (!pDN)
           return false ;
       return true ;
   }