MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / __string_hash_exists

Function __string_hash_exists

src/hx/Hash.cpp:858–864  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

856}
857
858bool __string_hash_exists(Dynamic &ioHash,String inKey)
859{
860 StringHashBase *hash = static_cast<StringHashBase *>(ioHash.GetPtr());
861 if (!hash)
862 return false;
863 return hash->exists(inKey);
864}
865
866bool __string_hash_remove(Dynamic &ioHash,String inKey)
867{

Callers 3

FieldMapGetFunction · 0.85
FieldMapHasFunction · 0.85
__HasFieldMethod · 0.85

Calls 2

GetPtrMethod · 0.80
existsMethod · 0.80

Tested by

no test coverage detected