Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

template<class IdxT, class ElemT, class DelT>
bool Impala::Util::SimpleMapBase< IdxT, ElemT, DelT >::Remove ( IdxT  idx  )  [inline]

Definition at line 79 of file SimpleMap.h.

00080     {
00081         Iter it = mMap.find(idx);
00082         if (it == mMap.end())
00083             return false;
00084         mDelete(it->second);
00085         mMap.erase(it);
00086         return true;
00087     }


Generated on Thu Jan 13 09:24:21 2011 for ImpalaSrc by  doxygen 1.5.1