Return TypeFunction nameArguments
boolhzSet::Exists(KEY&,)

Declared and defined in file: hzTmplSet.h

Function Logic:

0:START 1:pDN 2:unknown 3:Return false 4:Return true

Function body:

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