Return TypeFunction nameArguments
boolhdbIdset::operator[](unsigned int,)

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

Function Logic:

0:START 1:!mx 2:Return false 3:range hdbIdset::_findNode pNode 4:!pNode 5:Return false 6:Return pNode->IsSet(nId)

Function body:

bool hdbIdset::operator[] (unsigned int nId)
{
   _hzfunc("hdbIdset::operator[]") ;
   _idsNode*   pNode ;
   uint32_t    range ;
   if (!mx)
       return false ;
   range = nId / IDSET_SEGSIZE ;
   pNode = _findNode(nId) ;
   if (!pNode)
       return false ;
   return pNode->IsSet(nId) ;
}