Return TypeFunction nameArguments
boolhzMapM::Exists(const KEY&,)

Declared and defined in file: hzTmplMapM.h

Function Logic:

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

Function body:

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