| 856 | } |
| 857 | |
| 858 | bool __string_hash_exists(Dynamic &ioHash,String inKey) |
| 859 | { |
| 860 | StringHashBase *hash = static_cast<StringHashBase *>(ioHash.GetPtr()); |
| 861 | if (!hash) |
| 862 | return false; |
| 863 | return hash->exists(inKey); |
| 864 | } |
| 865 | |
| 866 | bool __string_hash_remove(Dynamic &ioHash,String inKey) |
| 867 | { |
no test coverage detected