| 811 | } |
| 812 | |
| 813 | int __string_hash_get_int(Dynamic inHash,String inKey) |
| 814 | { |
| 815 | StringHashBase *hash = static_cast<StringHashBase *>(inHash.GetPtr()); |
| 816 | if (!hash) |
| 817 | return null(); |
| 818 | |
| 819 | int result = 0; |
| 820 | hash->query(inKey,result); |
| 821 | return result; |
| 822 | } |
| 823 | |
| 824 | |
| 825 | Float __string_hash_get_float(Dynamic inHash,String inKey) |
no test coverage detected