template<class IdxT, class ElemT, class DelT>
Definition at line 37 of file SimpleMap.h. Referenced by Impala::Application::Util::DoImportAnnotationsOrk(), and Impala::Application::Util::DoJudgeConcepts(). 00038 { 00039 ConstIter it = mMap.find(idx); 00040 if (it == mMap.end()) 00041 return false; 00042 elem = it->second; 00043 return true; 00044 }
|