| 6 | Dynamic FieldMapCreate() { return Dynamic(); } |
| 7 | |
| 8 | bool FieldMapGet(FieldMap *inMap, const String &inName, Dynamic &outValue) |
| 9 | { |
| 10 | if (!inMap || !inMap->mPtr) |
| 11 | return false; |
| 12 | |
| 13 | if (!__string_hash_exists(*inMap,inName)) |
| 14 | return false; |
| 15 | outValue = __string_hash_get(*inMap, inName); |
| 16 | return true; |
| 17 | } |
| 18 | |
| 19 | |
| 20 | bool FieldMapGet(FieldMap *inMap, int inId, Dynamic &outValue) |
no test coverage detected