| 1135 | |
| 1136 | |
| 1137 | int __object_hash_get_int(Dynamic inHash,Dynamic inKey) |
| 1138 | { |
| 1139 | toRealObject(inKey); |
| 1140 | DynamicHashBase *hash = static_cast<DynamicHashBase *>(inHash.GetPtr()); |
| 1141 | if (!hash) |
| 1142 | return null(); |
| 1143 | |
| 1144 | int result = 0; |
| 1145 | hash->query(inKey,result); |
| 1146 | return result; |
| 1147 | } |
| 1148 | |
| 1149 | |
| 1150 | Float __object_hash_get_float(Dynamic inHash,Dynamic inKey) |
no test coverage detected