| 8 | // --- HashRoot --------------------------------------------------- |
| 9 | |
| 10 | int __root_hash_size(Dynamic &rtHash) |
| 11 | { |
| 12 | HashRoot *hash = static_cast<HashRoot *>(rtHash.GetPtr()); |
| 13 | if(!hash) |
| 14 | return 0; |
| 15 | return hash->getSize(); |
| 16 | } |
| 17 | |
| 18 | |
| 19 | // --- IntHash ---------------------------------------------------- |