| 186 | } |
| 187 | |
| 188 | Dynamic __int_hash_get(Dynamic inHash,int inKey) |
| 189 | { |
| 190 | IntHashBase *hash = static_cast<IntHashBase *>(inHash.GetPtr()); |
| 191 | if (!hash) |
| 192 | return null(); |
| 193 | |
| 194 | Dynamic result = null(); |
| 195 | hash->query(inKey,result); |
| 196 | return result; |
| 197 | } |
| 198 | |
| 199 | int __int_hash_get_int(Dynamic inHash,int inKey) |
| 200 | { |