| 276 | |
| 277 | |
| 278 | String __int_hash_to_string(Dynamic &ioHash) |
| 279 | { |
| 280 | IntHashBase *hash = static_cast<IntHashBase *>(ioHash.GetPtr()); |
| 281 | if (hash) |
| 282 | return hash->toString(); |
| 283 | #if (HXCPP_API_LEVEL >= 430) |
| 284 | return HX_CSTRING("[]"); |
| 285 | #else |
| 286 | return HX_CSTRING("{}"); |
| 287 | #endif |
| 288 | } |
| 289 | |
| 290 | void __int_hash_clear(Dynamic &ioHash) |
| 291 | { |