| 376 | } |
| 377 | |
| 378 | bool CScriptDictionary::Exists(const dictKey_t &key) const |
| 379 | { |
| 380 | dictMap_t::const_iterator it; |
| 381 | it = dict.find(key); |
| 382 | if( it != dict.end() ) |
| 383 | return true; |
| 384 | |
| 385 | return false; |
| 386 | } |
| 387 | |
| 388 | bool CScriptDictionary::IsEmpty() const |
| 389 | { |
no test coverage detected