| 800 | |
| 801 | |
| 802 | Dynamic __string_hash_get(Dynamic inHash,String inKey) |
| 803 | { |
| 804 | StringHashBase *hash = static_cast<StringHashBase *>(inHash.GetPtr()); |
| 805 | if (!hash) |
| 806 | return null(); |
| 807 | |
| 808 | Dynamic result = null(); |
| 809 | hash->query(inKey,result); |
| 810 | return result; |
| 811 | } |
| 812 | |
| 813 | int __string_hash_get_int(Dynamic inHash,String inKey) |
| 814 | { |
no test coverage detected